Andy Walker
New Member
Hi All
I use the short Macro below to copy a thumnail picture to a cell on anther part of the worksheet but it is hard coded to "Picture 231"
how could I change the code to insert the name of any of my Array of thumnail Pictures. i.e. "Picture 234" etc on clicking that picture.
Hope you can help, anyway thank you for reading.
Andy.
I use the short Macro below to copy a thumnail picture to a cell on anther part of the worksheet but it is hard coded to "Picture 231"
how could I change the code to insert the name of any of my Array of thumnail Pictures. i.e. "Picture 234" etc on clicking that picture.
Code:
ActiveSheet.Shapes.Range(Array("Picture 231")).Select
Selection.Copy
ActiveCell.Select
ActiveSheet.Pictures.Paste.Select
Hope you can help, anyway thank you for reading.
Andy.