Selecting a row to set row height in Excel

How do I select a row/rows in Excel to change the row height? Here is the results of an Excel macro that does this:
Rows("1:1").RowHeight = 69
With my_sheet as my worksheet object, I tried:
my_range = my_sheet.Rows('1:1');
but this gives me the error:
??? Index exceeds matrix dimensions.

 採用された回答

Jiro Doke
Jiro Doke 2011 年 1 月 21 日

1 投票

Try using the "Range" property.
my_range = my_sheet.Range('1:1');

その他の回答 (0 件)

製品

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by