René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Changing column widhts and row heights [Excel macro]

sub col_width_row_height

    rows   (4).RowHeight       = 90
    columns(3).ColumnWidth     = 90

    rows   ("1:3").RowHeight   = 2
    columns("a:b").ColumnWidth = 2

end sub