Images in Excel

Wallpag

New Member
Joined
May 16, 2011
Messages
2
I hope someone can help me with this, I have been trying to do this for days! :banghead:

I have a front page that links to a second worksheet that contains 140 images, these 140 are in 8 categorises. What I would like to do is to organise these images into 8 sections within the worksheet that you can then use a scrollbar to scroll along the images. You can then link from the 1st front page back to the images on the second worksheet.

So my question is does anyone know how to organise images, I have tried using the control toolbox, ImageListControl and a few more, but nothing seems to work as I want it. I have also tried inserting some scrollbars but I have not been able to achieve what I am after.

Can anyone point me in the right direction, or just give me an idea of the best way of presenting (and linking) to a number of pictures in excel.

Thanks for your help!
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
As images are members of Shapes collection, we can use Shape object to work with image.
Code:
Sub ArrangeShapes()

    Dim shp As Shape, cell As Range
    
    Set cell = Range("A1")
    
    For Each shp In Sheet1.Shapes
        shp.Left = cell.Left
        Set cell = cell.Offset(5, 0)
    Next

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,909
Members
452,949
Latest member
beartooth91

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top