Excel Column Width macro issue

algrey7

New Member
Joined
Sep 4, 2024
Messages
8
Office Version
  1. 365
Platform
  1. Windows
Hi hoping someone can help please?

I am trying to use this code to adjust certain columns to certain widths -

Sub Columns()
'
' Columns Macro
'

'
Columns("A:A").Select
Selection.ColumnWidth = 72.29
Columns("B:D").Select
Selection.ColumnWidth = 26.71
End Sub

But get the following error -

1725468765409.png


Any ideas what I am missing please?
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try changing the name of your procedures from "Columns" to something like "MyColumns".

You should NEVER use reserved words like "Columns" as the names of your procedures or variables (reserved words are the names of existing out-of-the-box functions, properties, methods, objects, etc). Doing so can cause errors and unexpected results.
 
Upvote 0
Solution
Try changing the name of your procedures from "Columns" to something like "MyColumns".

You should NEVER use reserved words like "Columns" as the names of your procedures or variables (reserved words are the names of existing out-of-the-box functions, properties, methods, objects, etc). Doing so can cause errors and unexpected results.
Thank you so much!
 
Upvote 0
You are welcome.
Glad we could help!
 
Upvote 0

Forum statistics

Threads
1,221,493
Messages
6,160,139
Members
451,624
Latest member
TheWes

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