![]() |
Importing a web page into Excel (picture)
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 |
Importing a web page into Excel (picture)
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 |
Importing a web page into Excel (picture)
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 |
Importing a web page into Excel (picture)
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 |
Importing a web page into Excel (picture)
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. |
Importing a web page into Excel (picture)
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. |
All times are GMT +1. The time now is 04:20 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com