Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have three regions EU, AP and NA and two employee types PERM and TEMP.
Now if Employee type is Perm and Region is EU or AP then we should get X
if Employee type is Perm and Region is EU or AP or NA then we should get Y
if Employee type is Temp then we should get Z.
Can some one provide a possible if condition for this in front end in a text box.
Thanks in Advance
It can be solved this way: where SR is Special Region
If([Emp Type] = 'Perm',
If(Concat(Distinct SR) = 'APEUNA' or Concat(Distinct SR) = 'APNA' or Concat(Distinct SR) = 'EUNA' or Concat(Distinct SR) = 'NA' , 'Y',
If(Concat(Distinct SR) = 'APEU'or Concat(Distinct SR) = 'EU' or Concat(Distinct SR) = 'AP' , 'X') ),
'Z')
It can be solved this way: where SR is Special Region
If([Emp Type] = 'Perm',
If(Concat(Distinct SR) = 'APEUNA' or Concat(Distinct SR) = 'APNA' or Concat(Distinct SR) = 'EUNA' or Concat(Distinct SR) = 'NA' , 'Y',
If(Concat(Distinct SR) = 'APEU'or Concat(Distinct SR) = 'EU' or Concat(Distinct SR) = 'AP' , 'X') ),
'Z')