Hi,
Is it possoble through VBA to auto size the cell width according to the value in it.
Thanx in Advance.
Hi,
Is it possoble through VBA to auto size the cell width according to the value in it.
Thanx in Advance.
Are you looking for? This will adjust the width of the column. If this is not what you are looking for, can you clarify with an example?Code:Activecell.EntireColumn.Autofit
A dream is not something you see when you are asleep, but something you strive for when you are awake.
It's usually a bad idea to say that something can't be done.
The difference between dream and aim, is that one requires soundless sleep to see and the other requires sleepless efforts to achieve
Join us at Facebook
Perhaps ! u can use this also
Code:Sub test() Dim sht As Worksheet For Each sht In ThisWorkbook.Worksheets On Error Resume Next sht.Activate Cells.EntireColumn.AutoFit Next sht End Sub
Bookmarks