VBA Number Format for Columns "J:M" across Multiple Worksheets

kmd2201

New Member
Joined
May 14, 2018
Messages
4
Hi -
I wrote the following code to be able to hit a macro button to format columns "J:M" with the "comma" format on all worksheets, but it doesn't work. When I click the Macro button, it highlights the columns but then doesn't format them. It doesn't error out either... What is my code missing?

Here is the code:

Private Sub CommandButton5_Click()


Dim ws As Worksheet

For Each ws In ThisWorkbook.Worksheets
With ws
Columns("J:M").Select
Selection.Style = "Comma"
End With
Next ws


End Sub

Thanks!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
This would for me:
Code:
Private Sub CommandButton5_Click()

    Dim ws As Worksheet

    For Each ws In ThisWorkbook.Worksheets
        ws.Columns("J:M").Style = "Comma"
    Next ws

End Sub
 
Upvote 0
This would for me:
Code:
Private Sub CommandButton5_Click()

    Dim ws As Worksheet

    For Each ws In ThisWorkbook.Worksheets
        ws.Columns("J:M").Style = "Comma"
    Next ws

End Sub

Thank you, works like a charm now!
 
Upvote 0
You are welcome. Glad I could help.
 
Upvote 0

Forum statistics

Threads
1,215,847
Messages
6,127,270
Members
449,372
Latest member
charlottedv

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