Below is a code which Weaver very kindly helped me with - Thanks Weaver!
While it is awesome it doesn't quite do as I need it to do. Please look at the code below and help out with it if you think you can.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address(0,0) = "A1" Then
Target.Columns.ColumnWidth = 80
ActiveWindow.Zoom = 130
Else
Columns(1).ColumnWidth = 8.5
ActiveWindow.Zoom = 100
End If
End Sub
I want it to zoom in to 130 on all data validation cells on the one page, and at the same time extend the column to 80.
Weaver's did this but only for cell A1, not all data validation cells.
And then the challenging part - I want it to go back to it's original size once I click on any other non-data validated cells.
any experts think they are able to crack this one for me....????
Thanks guys,
speak soon,
Scott
While it is awesome it doesn't quite do as I need it to do. Please look at the code below and help out with it if you think you can.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address(0,0) = "A1" Then
Target.Columns.ColumnWidth = 80
ActiveWindow.Zoom = 130
Else
Columns(1).ColumnWidth = 8.5
ActiveWindow.Zoom = 100
End If
End Sub
I want it to zoom in to 130 on all data validation cells on the one page, and at the same time extend the column to 80.
Weaver's did this but only for cell A1, not all data validation cells.
And then the challenging part - I want it to go back to it's original size once I click on any other non-data validated cells.
any experts think they are able to crack this one for me....????
Thanks guys,
speak soon,
Scott