Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 70
Default How to insert picture using VBA which refer to cell value

Hi guys! need urgent help

I have new project to create simple macro that can insert photo from
specific folder in c:/ drive which is refer to cells value for example
Cells A1 = apple, then I have to insert apple.jpg picture into
specific location in same sheet then if
Cells A2 = orange, then I have to insert orange.jpg picture below
apple.jpg picture and etc...

Pls help.Thanks..
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default How to insert picture using VBA which refer to cell value

This request is proeety simple. Not sure why you didn't get a response
sooner. The onluy issue I see is you didn't specify where the picture should
be placed or the size of the picture. You could end up with multiple
pictures placed on top of each other.

Sub Insert()

Folder = "c:\temp\"

RowCount = 1
Do While Range("A" & RowCount) < ""
PictName = Range("A" & RowCount)
Set newpict = ActiveSheet.Pictures.Insert( _
Folder & PictName & ".jpg")

RowCount = RowCount + 1
Loop


End Sub

"geniusideas" wrote:

Hi guys! need urgent help

I have new project to create simple macro that can insert photo from
specific folder in c:/ drive which is refer to cells value for example
Cells A1 = apple, then I have to insert apple.jpg picture into
specific location in same sheet then if
Cells A2 = orange, then I have to insert orange.jpg picture below
apple.jpg picture and etc...

Pls help.Thanks..

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Insert Picture into a cell PSULionRP Excel Discussion (Misc queries) 1 July 15th 09 05:47 PM
How do I insert a picture into a cell? Evan Lapka[_2_] Excel Worksheet Functions 7 June 21st 07 10:18 PM
How do I insert a picture into a cell? Evan Lapka Excel Discussion (Misc queries) 1 June 21st 07 12:05 AM
how do I insert picture into cell so vlookup can return picture? ah Excel Worksheet Functions 1 May 1st 07 04:38 AM
Insert picture when cell changes crazybass2 Excel Programming 5 June 22nd 06 08:36 AM


All times are GMT +1. The time now is 07:40 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"