What I want to do:
Find a comma in front of a number ",1" and change it to a period ".1"
How I'm currently doing it
Code:
With Selection.Find
.Text = ",1"
.Replacement.Text = ".1"
...
and repeat for all numbers 0-9.
I'd like to condense this maybe using something like
But I'm not sure how to go about it.
Please help!