David has attended:
Excel VBA Intro Intermediate course
Formating
How do you autosize a Excel cell in VBA?
RE: formating
Hi David,
Welcome to the forum. Thank you for your question regarding autosizing a cell.
To autoszing a cell you use the Autofit command to the row and column. For Example
Rows("3:3").EntireRow.AutoFit
Columns("F:F").EntireColumn.AutoFit
Please let me know how you get on.
Laura GB