I do have many Excel Worksheets with columns that may contain hundreed of thousands of characters. I am using VBA to expand the columns using Autofit method to expand the columns and avoid the ###### replacement that Excel do in very populated columns. What do you sugest me to expand the columns and being able to see the content? Here is a sample of the code I am using. It should expand every single column in every spreadsheet of the workbook.
Cells.Select
With Selection
.Font.name = "Times New Roman"
.Font.Size = .Font.Size - 1
EntireRow.AutoFit
EntireColumn.AutoFit
End With
Thank you
Cells.Select
With Selection
.Font.name = "Times New Roman"
.Font.Size = .Font.Size - 1
EntireRow.AutoFit
EntireColumn.AutoFit
End With
Thank you