P Pam Apr 22, 2009 #1 How do I automatically resize a cell in Visual Basic depending on the amount of text I enter?
M Mike H Apr 22, 2009 #2 Pam, It depends on what you want to do. Like this Range("A1").Value = "antidisestablishmentarianism" With Range("A1") .WrapText = True End With or like this Range("A1").Value = "antidisestablishmentarianism" Columns("A:A").EntireColumn.AutoFit Mike
Pam, It depends on what you want to do. Like this Range("A1").Value = "antidisestablishmentarianism" With Range("A1") .WrapText = True End With or like this Range("A1").Value = "antidisestablishmentarianism" Columns("A:A").EntireColumn.AutoFit Mike