I have a list of checked drop-down lists in Excel that cannot be read if the scale is less than 100. I checked on the Internet and fvound that I cannot change the font size with the confirmed list, so I want to set the scaling to 100.
I have code to do it as follows
Private Sub Worksheet_SelectionChange(ByVal Target As Range) ActiveWindow.Zoom = 100 End Sub
This works and is great for people who use a scale of less than 100, but if people use a scale of more than 100, it limits the scale to 100. Is there a way to overcome this, something like the If-Else statement lines.
If the scale is less than 100, then scaling = 100; otherwise, if the scale is greater than 100 does nothing
Thanks.
source share