Y ou could try this:-
If you know how to, you can copy this bit of code into a Command Button.
Failing that Write an empty Macro and copy the code below into it, between
the words Sub Macro?? & End Sub.
The code refers to your (One cell) list of information in Range("B1) and the resulting output
of individual numbers, prefixed by "$" will be in column "A"
Amend these Ranges addresses to suit your needs
Dim list, c, v, all, CL
CL = Range("b1").Value 'Amend Range to suit
c = 1
For v = 1 To Len(CL)
If Not Mid(CL, v, 1) = " " Then
all = all & Mid(CL, v, 1)
Else
Cells(c, "A").Value = all 'Amend Range "A" to suit
c = c + 1
all = ""
End If
Next
You will need to Format Column "A" as currency "$" to One decimal Place
Regards Mick G
Bookmarks