Is it possible to display a live/linked view of a range of cells with an image control on an Excel form?
When you copy a range on a sheet, then use "Paste Picture Link" to create an image control where .Formula is set to that range, you end up with a live "window" into those cell's contents on that image control. And you can change the range the image is looking at with it's .Formula property:
I want the same thing, but as a control on a form where I will be setting the range it's looking at via VBA... clear as mud? I tried adding an image control to the form, but there's apparently no .formula property.
VBAjedi![[swords] [swords] [swords]](/data/assets/smilies/swords.gif)
When you copy a range on a sheet, then use "Paste Picture Link" to create an image control where .Formula is set to that range, you end up with a live "window" into those cell's contents on that image control. And you can change the range the image is looking at with it's .Formula property:
Code:
ActiveSheet.Shapes("Picture1").Select
Selection.Formula = "$A$3:$A$6"
I want the same thing, but as a control on a form where I will be setting the range it's looking at via VBA... clear as mud? I tried adding an image control to the form, but there's apparently no .formula property.
VBAjedi
![[swords] [swords] [swords]](/data/assets/smilies/swords.gif)