All,
I am certain there's a simple answer to this but it has been baffling
me so I'm throwing it open to the world after searching the archives
with little success.
In my worksheet, I have inserted images conditional on cells containing
certain values. The code is as follows:
~~~~~~~~~~~~
Private Sub Worksheet_Calculate()
Me.Shapes("Picture 1").Visible = (Range("C14") = 2)
Me.Shapes("Picture 2").Visible = (Range("C23") = 5.76)
End Sub
~~~~~~~~~~~~
The images appear without any problem and all is well on-screen.
However, I cannot get the images to print and I am unsure as to how to
fix this. I've checked the image properties and the "print object" box
is checked so it would seem that it should print but doesn't. What's
the simple thing I am overlooking which will make those images appear
when printed?
Thanks in advance!
Bookmarks