Check if Excel Sheet contains Image
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-02-21 12:27 PM
Hello Everyone,
Is there a way I can check for Images in the Excel Worksheet.
------------------------------
Nikhil Negi
------------------------------
Is there a way I can check for Images in the Excel Worksheet.
------------------------------
Nikhil Negi
------------------------------
12 REPLIES 12
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-21 12:34 PM
Thanks Michael for your suggestion
------------------------------
Nikhil Negi
------------------------------
------------------------------
Nikhil Negi
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-02-21 04:57 PM
Hi Michael,
In my case The Output collection is huge and the process is taking a lot of time to find the image.
Is there a way I can look for an image in specific cell Range?
Thank you
------------------------------
Nikhil Negi
------------------------------
In my case The Output collection is huge and the process is taking a lot of time to find the image.
Is there a way I can look for an image in specific cell Range?
Thank you
------------------------------
Nikhil Negi
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
16-02-21 05:35 PM
I would think it should be possible although you must have a very large number of images in your excel file if its taking that long to get them. It should only take a matter of seconds. You would need to amend the original code to get a range instead of just from a worksheet. You will need to add in range as an input and the part of the code getting the images would need to change to something like below. Note my_range is just the example input name.
For Each image In wb.Worksheets(Worksheet).Range(my_range).Shapes
Table.Rows.Add(image.Name)
Next
------------------------------
Michael ONeil
Technical Lead developer
Everis Consultancy
Europe/London
------------------------------
For Each image In wb.Worksheets(Worksheet).Range(my_range).Shapes
Table.Rows.Add(image.Name)
Next
------------------------------
Michael ONeil
Technical Lead developer
Everis Consultancy
Europe/London
------------------------------

- « Previous
-
- 1
- 2
- Next »