I am able to place a logo image into the chartarea of a chart easily using
With ActiveChart.Shapes
.AddPicture "M:\coding\graphics\ma_logo.gif", False, True, ChartWidth - 120, 1, 90, 25
End With
But i would like to know how to go about inserting an image in the chartarea from a hidden worksheet .
Was thinking Something like the following :
Dim LogoPic As Picture
Set LogoPic = ActiveWorkbook.Worksheets("Hidden").Shapes("Picture 1").Copy
Then insert the picture at a specific location -
but i am having some difficulty determining how to go about this - I would appreciate any asisstance - Thanks
With ActiveChart.Shapes
.AddPicture "M:\coding\graphics\ma_logo.gif", False, True, ChartWidth - 120, 1, 90, 25
End With
But i would like to know how to go about inserting an image in the chartarea from a hidden worksheet .
Was thinking Something like the following :
Dim LogoPic As Picture
Set LogoPic = ActiveWorkbook.Worksheets("Hidden").Shapes("Picture 1").Copy
Then insert the picture at a specific location -
but i am having some difficulty determining how to go about this - I would appreciate any asisstance - Thanks