Automate Excel » VBA: Row Height – Column Width

Automate Excel » VBA: Row Height – Column Width

瀏覽:629
日期:2025-04-25
Row height and Column width can be changed with the RowHeight and ColumnWidth properties. Macro to change the row height of Row 1 and column width of Column A: Sub HeightWidth() Rows("1:1").RowHeight = 30 Columns("A:A").ColumnWidth = 30 End ......看更多