Example: If(H3>100,Picture 1,"").
I would like to display a graphic on our sales flash
everytime we make budget.
Thank you,
Rob
Sub Hide_It()
ActiveSheet.Shapes("Picture 1").Visible = False
End Sub
Press Alt+F11, click on the ThisWorkbook module for your
file, insert the code above, and run it. Then click on the
appropriate sheet module and insert this code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Count > 1 Then Exit Sub
With Range("H3")
If .Value > 100 Then
ActiveSheet.Shapes("Picture 1").Visible = True
End If
End With
End Sub
--
HTH
Jason
Atlanta, GA
>.
>
Thanks again,
Rob
>.
>