Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim shp As Shape
For Each shp In ActiveSheet.Shapes
If shp.TopLeftCell.Address = Target.Address Then
If shp.Visible Then
shp.Visible = False
Else
shp.Visible = True
End If
End If
Next
End Sub
Public Function ShowHidePicture(PictureName As String, Visibility As Boolean)
ActiveSheet.Shapes(PictureName).Visible = Visibility
End Function
Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
If Image1.Height = 361.6 Then
With Image1
.Height = 2
.Width = 2
.AutoSize = False
End With
Else
With Image1
.Height = 361.6
.Width = 361.6
.AutoSize = True
End With
End If
End Sub
you can't see where the invisible shapes are