Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears he http://chart.finance.yahoo.com/c/1y/f/ffiv appear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. Thanks for your help! Rob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello
Why not saving the pic to hard disk, then inserting it in the cell? -- Wigi http://www.wimgielis.be = Excel/VBA, soccer and music "Rob" wrote: Hello, I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears he http://chart.finance.yahoo.com/c/1y/f/ffiv appear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. Thanks for your help! Rob |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am hoping to simply enter the url and have it populate. Saving to disk and
inserting it would be too time consuming. "Wigi" wrote: Hello Why not saving the pic to hard disk, then inserting it in the cell? -- Wigi http://www.wimgielis.be = Excel/VBA, soccer and music "Rob" wrote: Hello, I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears he http://chart.finance.yahoo.com/c/1y/f/ffiv appear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. Thanks for your help! Rob |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I forgot to say "thanks" for the suggestion. Rob "Wigi" wrote: Hello Why not saving the pic to hard disk, then inserting it in the cell? -- Wigi http://www.wimgielis.be = Excel/VBA, soccer and music "Rob" wrote: Hello, I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears he http://chart.finance.yahoo.com/c/1y/f/ffiv appear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. Thanks for your help! Rob |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What I've played with in the past with my add-in (
http://finance.groups.yahoo.com/group/smf_addin/ ) is three different approaches to attempt to automate it: 1. Have a function place the image as a "background" for a comment. 2. Insert the image but make it "exandable" to full size and "collapsible" into the size of the cell by clicking on it 3. Using a worksheet "change" event to insert images wherever a string of "Image: http://....." is found For example, the simplest version of #1 would be this function invocation: =RCHCreateComment("http://chart.finance.yahoo.com/c/1y/f/ffiv",99) The biggest problem with #1 is that EXCEL only allows the URL to be less than 100 bytes long. I've had to come up with PHP workarounds for images with longer URLs that I've wanted to use. The "99" above indicates a "free-form" URL is being entered. If you wanted one of the preprogrammed ones, say a chart from StockCharts, you could just do something like: =RCHCreateComment("MMM",1) ....where "MMM" is the ticker symbol and "1" is the choice for the StockCharts chart. For #2, I would simply put the URL into a worksheet cell, then run macro RCHTogglePicture of the add-in. The add-in is open source, so you can review how the code works. It's in the files area of the Yahoo group, as is documentation on most of its functions. On Jul 9, 2:16 pm, Rob wrote: I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears hehttp://chart.finance.yahoo.com/c/1y/f/ffivappear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Randy,
This is great information! Thank you. Rob "Randy Harmelink" wrote: What I've played with in the past with my add-in ( http://finance.groups.yahoo.com/group/smf_addin/ ) is three different approaches to attempt to automate it: 1. Have a function place the image as a "background" for a comment. 2. Insert the image but make it "exandable" to full size and "collapsible" into the size of the cell by clicking on it 3. Using a worksheet "change" event to insert images wherever a string of "Image: http://....." is found For example, the simplest version of #1 would be this function invocation: =RCHCreateComment("http://chart.finance.yahoo.com/c/1y/f/ffiv",99) The biggest problem with #1 is that EXCEL only allows the URL to be less than 100 bytes long. I've had to come up with PHP workarounds for images with longer URLs that I've wanted to use. The "99" above indicates a "free-form" URL is being entered. If you wanted one of the preprogrammed ones, say a chart from StockCharts, you could just do something like: =RCHCreateComment("MMM",1) ....where "MMM" is the ticker symbol and "1" is the choice for the StockCharts chart. For #2, I would simply put the URL into a worksheet cell, then run macro RCHTogglePicture of the add-in. The add-in is open source, so you can review how the code works. It's in the files area of the Yahoo group, as is documentation on most of its functions. On Jul 9, 2:16 pm, Rob wrote: I am wondering if it is possible to pull a web picture into excel into a specific cell? For example, can I make the image that appears hehttp://chart.finance.yahoo.com/c/1y/f/ffivappear in excel in a specific cell? I would have other data next to this picture so row 1 might have 10 other columns and then the 11th column would be this picture. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Importing a picture behind worksheet? | Excel Discussion (Misc queries) | |||
importing a web page to excel | Excel Discussion (Misc queries) | |||
Picture in Excel Web Page | Excel Discussion (Misc queries) | |||
Importing Web Page with Hyperlinks into Excel | Excel Discussion (Misc queries) | |||
How to keep a picture in Excel 97 page footer/header? | Excel Programming |