How to set a column width or row height using an excel function

ShogunM

New Member
Joined
Nov 9, 2015
Messages
1
I can retrieve a cell width or height using the CELL function. I would like to use this function to keep multiple sheet in sync with any reformatting done on the first sheet.

Is there any Excel Function that does something like SetColumnWidth(Column,Width) or SetRowHeight(Row,Height) ?

Thanks in Advance
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I can retrieve a cell width or height using the CELL function. I would like to use this function to keep multiple sheet in sync with any reformatting done on the first sheet.

Is there any Excel Function that does something like SetColumnWidth(Column,Width) or SetRowHeight(Row,Height) ?

Thanks in Advance
Hi ShogunM, welcome to the boards.

You can tailor the following macro to suit your needs or at least to get you moving in the right direction:

Rich (BB code):
Sub WidthHeight()
Columns("A:Z").ColumnWidth = 25
Rows("1:100").RowHeight = 25
End Sub

You can change the bold red row / column references to suit your needs, and change the bold green 25's to suit your desired heights / widths.
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top