View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Halim Halim is offline
external usenet poster
 
Posts: 182
Default Insert picture with macro

hi,

that's all possible, you can use:
Assume that range("A1") text is correct filename like "C:\picture.bmp"
sub insertpic()
sheets(1).pictures.insert range("A1")
end sub

--
Regards,

Halim



"Esrei" wrote:

I have red the reference articles and questions on displaying a picture when
changing a reference in a cell. I do not want to save the picture in the
worksheet but rather save the path in a cell to be a lookup. Is this
possible? I am designing a orderform.
Thank you

Esrei