Hi all,
So I searched through existing discussion topics on this error and on nested ifs, but can not seem to find the difference between my syntax and that of other solutions.
It keeps giving me an error. Below is formula.
(Background, it should search column A (legal entity code) with specific code for all balances in column B (ending balance) that exceeds the amount stated and return a classification.
if ( [Legal entity code]="148" and [Sum_Sum_Ending Balance] >= 14410500) then "In-scope"
else if ([Legal entity code]=157 AND [Sum_Sum_Ending Balance] >= 9893250) then "In-scope"
else if ( [Legal entity code]=159 AND [Sum_Sum_Ending Balance] >= 9315750) then "In-scope"
else "Out of scope"
endif
Will appreciate any help!