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.
For Each sh In ActiveSheet.Shapes
With sh
Select Case .Name
Case "Sheet1": .OnAction = "Macro1"
Case "Sheet2": .OnAction = "Macro2"
End Select
With .ShapeRange
.LockAspectRatio = msoTrue
.Height = .Height * 1.5
End With
End With
Next