Hi all,
I have some currency data that I import which is either formatted as 555.34 or 555,34. It changes month to month but I want to change the comma's into decimal notation eveytime.
I use the following formula:
IIF(IsString([Field]), Replace([Field], ",", "."), [Field])
This only work when the data comes in as a string i.e. it contains a comma seperater. But the formula fails when the data comes in as a double i.e. decimal seperater when it should just pass through as the else part of the formula.
Could anyone shed any light as to why alteryx works like this or any other ways to do this?
Thanks