Hi Community,
I want to say if the currency code = Eur then multiply the Ex OH Cost column by 1.069518717 or if the currency code = GBP then multiply the Ex OH Cost column by 1.204529029 if the Currency Code is not EUR or GBP use the Ex OH Cost
IF [CURRENCY_CODE] = 'EUR' THEN [Ex OH Cost] * "1.069518717" ELSEIF [CURRENCY_CODE] = 'GBP' THEN [Ex OH Cost] * "1.204529029" ELSE [Ex OH Cost] ENDIF
But I'm get a parse error I've tried double quotes "" and Single '' but neither work when try finish with the ELSE [Ex OH Cost] ENDIF part of the formula.
See attached error.
Can someone advise the fix here please.
TIA
Karl.