Hi,
[Background]
CustomerCare replied that Call.PositionInQueue needs to determine if the value is NOT_SET.
[Question]
If the value of Call.PositionInQueue is NOT_SET, set the value to "false", otherwise compare it with "Call.PositionInQueue ! = 0".
Is it correct to understand that the equation to make the above work is as follows?
If(IsNotSetOrEmpty(Call.PositionInQueue),false,Call.PositionInQueue != 0)
Kind Regards
kazu