Reputation: 41
I have a Google Sheets cell with content like this: £5,300.23 and I can't find a simple way to reformat it as numbers.
My current solution is in three steps:
= substitute(A1, "£", "")
), Is there a better way?
Upvotes: 0
Views: 86
Reputation: 1
you can do simply:
=SUBSTITUTE(A18, "£", )*1
and arrayformula would be:
=ARRAYFORMULA(SUBSTITUTE(A18:A20, "£", )*1)
Upvotes: 0
Reputation: 4382
Use Value
on the result of substitute
:
=VALUE(SUBSTITUTE(A1,"£",""))
Upvotes: 1