VBA to remove commas

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try

Code:
Sub test()
ActiveSheet.UsedRange.Replace what:=",", replacement:="", Lookat:=xlPart
End Sub
 
Upvote 0
Vog as a test i inputted 12,369.36 in active worksheet i ran the code but it still showing up as a comma, could you please test


Try

Code:
Sub test()
ActiveSheet.UsedRange.Replace what:=",", replacement:="", Lookat:=xlPart
End Sub
 
Upvote 0
That comma isn't really there - it is the way the cell is formatted.

Perhaps

Code:
Sub test()
ActiveSheet.UsedRange.NumberFormat = "0.00"
End Sub
 
Upvote 0
I need the commas code cos there will be commas i need to remove, but is best to add the number format beneath the comma code?

Code:
Sub test()
ActiveSheet.UsedRange.Replace what:=",", replacement:="", Lookat:=xlPart
ActiveSheet.UsedRange.NumberFormat = "0.00"
End Sub

That comma isn't really there - it is the way the cell is formatted.

Perhaps

Code:
Sub test()
ActiveSheet.UsedRange.NumberFormat = "0.00"
End Sub
 
Upvote 0
This worked in a quick test

Code:
Sub test()
With ActiveSheet.UsedRange
    .Replace what:=",", replacement:="", Lookat:=xlPart
    .NumberFormat = "0.00"
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,267
Members
448,558
Latest member
aivin

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