Assign the column width of one cell to another cell on the active sheet, using: : Column « Excel « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Excel
- Column
Assign the column width of one cell to another cell on the active sheet, using:
Sub widthDemo()
Range("C1").ColumnWidth = Range("A1").ColumnWidth
End Sub
Related examples in the same category