I have the following code to try to zoom to a selection dependent on the worksheet being opened:
zArea = "A1:" & Range("BA6").value (Sets String zArea to A1: and the last cell in range as given in cell BA6 on each worksheet)
Range(zArea).Select
ActiveWindow.Zoom = True
The problem I...