Get Started
Documentation
Macros
More information
|
Set column widthDescription
Set the width for the column B. (function() { Api.GetActiveSheet().SetColumnWidth(1, 25); })(); Methods used: GetActiveSheet, SetColumnWidth Reference Microsoft VBA macro code
Sub example() Columns("B").ColumnWidth = 25 End Sub Result
![]() |