Hi,
I'm trying to create a nested if statement (below) and have tried each of the if statements individually and they are all work fine.
However, once I combine the statements in the nested if statement is returns #UNPARSEABLE
IFERROR(IF([Engagement : Currency]@row = “AUD”, [Engagement : Engagement value]@row * 0.64, IF([Engagement : Currency]@row = “SGD”, [Engagement : Engagement value]@row *, IF ([Engagement : Currency]@row = “USD”, [Engagement : Engagement value]@row, 0))), "ERROR!")
Appreciate any advice.