I have a workbook created by copying data from a website. Every amount is preceded by "+$", which I would like to eliminate so that only the value remains.
Yes, there is a space before the "+".
There are hundreds of rows.
I tried creating a macro to eliminate this. I recorded these steps: "edit, home, delete, delete, delete, enter." five times. When I run this macro on a different group of cells, it replaces the contents of those cells with the contents of the original cells which were used to create the macro.
The code reads:
{code}' Keyboard Shortcut: Ctrl+y
'
ActiveCell.FormulaR1C1 = "763.7"
Range("I60").Select
ActiveCell.FormulaR1C1 = "898.96"
Range("I61").Select
ActiveCell.FormulaR1C1 = "329.09"
Range("I62").Select
ActiveCell.FormulaR1C1 = "37.82"
Range("I63").Select
ActiveCell.FormulaR1C1 = "109.59"
Range("I64").Select
End Sub
Clearly creating a macro with the recorder does not work in this case. Assistance would be appreciated.
Thanks
Bookmarks