Setting Cloumn Width

Rocky0201

Active Member
Joined
Aug 20, 2009
Messages
278
I have defined in a worksheet (Lists) column (K) and rows 31 through 38 contaning values: 9.3, 8.3, 11.3, etc... I need to be able to loop through this table using the values to set column widths in the worksheet "Report" starting at column A.

I greatly appreciate help with this macro.

Thanks...
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try:

Code:
Sub test()
Dim myRange As Range, myCol As Integer
myCol = 1
For Each myRange In Sheets("Lists").Range("K1:K38")
Sheets("Report").Columns(myCol).ColumnWidth = myRange
myCol = myCol + 1
Next myRange
End Sub

Dom
 
Upvote 0

Forum statistics

Threads
1,226,693
Messages
6,192,471
Members
453,726
Latest member
JoeH57

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