B
Bill Ridgeway
How can you configure Excel to automatically expand column width when
inputting information?
Thanks.
Bill Ridgeway
inputting information?
Thanks.
Bill Ridgeway
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Rick Rothstein (MVP - VB) said:I don't know if there is a setting for this (although you could always
highlight the column and click Format/Column/Autofit Selection or double
click the column header's right side column's gridline after making an
entry), but you can use this worksheet event macro to have the column width
automatically reset itself for the longest entry in column...
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveSheet.Columns(Target.Column).AutoFit
End Sub
Rick
column width when inputting information?" I meant so that the column width
changes automatically at the point in time of pressing <enter> after
inputting data?
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.