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

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
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
You are welcome. Glad I could help.
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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