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

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
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,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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