D
David
I've got some data in the format:
$9,212.00
I want it to show as
9212.00
I've tried using this:
With ActiveSheet.Columns("E", "L", "R", "S", "Z", "AB", "AC")
.NumberFormat = "0.00"
End With
In the relevant columns but it's not working, the figures still show
in their original format, what did I do wrong?
Thanks for any advice.
$9,212.00
I want it to show as
9212.00
I've tried using this:
With ActiveSheet.Columns("E", "L", "R", "S", "Z", "AB", "AC")
.NumberFormat = "0.00"
End With
In the relevant columns but it's not working, the figures still show
in their original format, what did I do wrong?
Thanks for any advice.