Hi Frzz,
I need to apply AND & OR operators in IF statement of Calculated Column. Could some one help he how to achieve this.
IF( employeetype = = 'temporary' AND experiance == '5years' )
{
IF( employeeDesignation == ' BA' )
{
logic
}
ELSE IF (employeeDesignation == 'AC')
{
logic
}
ElSE
{
logic
}
ELSE IF ( employeetype = = 'temporary' OR experiance == '5years' )
{
IF( employeeDesignation == ' BA' )
{
logic
}
ELSE IF (employeeDesignation == 'AC')
{
logic
}
ElSE
{
logic
}
}
ELSE
{
Logic
}
Best Regards,
Krishna.