Dears,
I'm currently trying to create a formula in the Designer where IF and AND are used multiple times.
I tried different combination but the result is always a parse error, I hope maybe somebody is able to help me out.
Basically the idea is the following - create a new column where:
First IF: Busn_Area is 4690 and MUV is YES and Tm1 reporting is other -> THEN: "OTHER Products Base"
Second IF: Busn_Area is 1860 and MUV is YES and Tm1 reporting is other -> THEN: "OTHER Products Bio"
Third IF: Busn_Area is 4690 and MUV is NO -> "THEN: OTHER Accounts Base"
Fourth IF: Busn_Area is 1860 and MUV is NO -> "THEN: OTHER Accounts Bio"
For all the other lines, give me the result in TM1 reporting
Here below the latest formula I created:
IF ([Busn_Area]="4690" && [MUV]="YES" && [TM1 reporting]="OTHER") THEN "OTHER Products Base"
ELSE IF ([Busn_Area]="1860" && [MUV]="YES" && [TM1 reporting]="OTHER") THEN "OTHER Products Bio"
ELSE IF ([Busn_Area]="4690" && [MUV]="NO") THEN "OTHER Accounts Base"
ELSE IF ([Busn_Area]="1860" && [MUV]="NO")THEN "OTHER Accounts Bio"
ELSE [TM1 reporting] ENDIF
Can anyone of you help me with the formula creation?
Thanks a lot in advance!!
Kind regards
Francesco