Forum Discussion

AKARSEVGI's avatar
AKARSEVGI
Helper I
4 years ago
Solved

power query

=if ([SALRESP]="SEA" then "HAUS SEA" if ([SALRESP]="INDIA" then "HAUS SA" if ([SALRESP]="HAUS EUROPE" then "HAUS EUROPE" if ([SALRESP]="ASS" then "AFTER SALES" if ([COGRP]="IBERIA" then "IBERIA" if ([CONAME]="Türkiye" then "TURKEY" if ([COUNTRY]="IT" then "ITALY" if ([SALDEPTENAME]<>"OLIVE OIL" then "OTHER REGIONS"if ([COUNTRY]="MA" then "MOROCCO" if ([COUNTRY]="TN" then"TUNISIA" if ([COUNTRY]="DZ" then "ALGERIA" if ([COUNTRY]="EG" then "EGYPT" if ([COUNTRY]="Greece" then "GREECE" else "OTHER REGIONS")))))))))))))

 

Answer: Token RightParen expected . what does it mean?

  • Hi AKARSEVGI ,

     

    Your ideal could be like this:-

    if [SALRESP]="SEA"
      then "HAUS SEA" 
    else if [SALRESP]="INDIA" 
      then "HAUS SA" 
    else if [SALRESP]="HAUS EUROPE" 
      then "HAUS EUROPE" 
    else if [SALRESP]="ASS" 
      then "AFTER SALES" 
    else if [COGRP]="IBERIA" 
      then "IBERIA" 
    else if [CONAME]="Türkiye"
      then "TURKEY" 
    else if [COUNTRY]="IT"
      then "ITALY" 
    else if [SALDEPTENAME]<>"OLIVE OIL" 
      then "OTHER REGIONS" 
    else if [COUNTRY]="MA" 
      then "MOROCCO"
    else if [COUNTRY]="TN" 
      then"TUNISIA" 
    else if [COUNTRY]="DZ" 
      then "ALGERIA" 
    else if [COUNTRY]="EG" 
      then "EGYPT" 
    else if [COUNTRY]="Greece" 
      then "GREECE"
    else "OTHER REGIONS"

     

    Thanks,

    Samarth

1 Reply

  • Samarth_18's avatar
    Samarth_18
    Community Champion

    Hi AKARSEVGI ,

     

    Your ideal could be like this:-

    if [SALRESP]="SEA"
      then "HAUS SEA" 
    else if [SALRESP]="INDIA" 
      then "HAUS SA" 
    else if [SALRESP]="HAUS EUROPE" 
      then "HAUS EUROPE" 
    else if [SALRESP]="ASS" 
      then "AFTER SALES" 
    else if [COGRP]="IBERIA" 
      then "IBERIA" 
    else if [CONAME]="Türkiye"
      then "TURKEY" 
    else if [COUNTRY]="IT"
      then "ITALY" 
    else if [SALDEPTENAME]<>"OLIVE OIL" 
      then "OTHER REGIONS" 
    else if [COUNTRY]="MA" 
      then "MOROCCO"
    else if [COUNTRY]="TN" 
      then"TUNISIA" 
    else if [COUNTRY]="DZ" 
      then "ALGERIA" 
    else if [COUNTRY]="EG" 
      then "EGYPT" 
    else if [COUNTRY]="Greece" 
      then "GREECE"
    else "OTHER REGIONS"

     

    Thanks,

    Samarth