drpdrpdrp
New Member
- Joined
- Sep 9, 2021
- Messages
- 22
- Office Version
- 2019
- 2016
- Platform
- Windows
I do not like Excel's default behavior of:
to work, but it does not. Any suggestions?
To be clear, what I am trying to achieve is: a vba sub that I can run before I start to work on a sheet that will prevent any *automatic* width and height adjustments
- expanding a column width if a large number is typed/returned for the first time
- not resizing if a large number is typed/returned, if it has been already resized
- not resizing if a large character string is entered ("spill" contents)
VBA Code:
Sub columnWidth()
Range("A:XFD").columnWidth = 8.5
End Sub
to work, but it does not. Any suggestions?
To be clear, what I am trying to achieve is: a vba sub that I can run before I start to work on a sheet that will prevent any *automatic* width and height adjustments