Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to count employees based on Ticket_No.If Ticket_No is null no need to count employee. Please find my below query.
=count({$<Emp_Status={'Completed'},Ticket_No={'>0'}>}Ticket_No)
help me
Hi Gireesh,
Try below expression.
If(Emp_Status='Comlpeted' and not isnull(Ticket_No),Count(Ticket_No))
Warm regards,
Venkata Sreekanth
Hi,
try the following expression:
Count(
If(Emp_Status = 'Completed' AND not isNull(Ticket_No),
Ticket_No
)
)
I recommens that you disregard ALL of the above responses except for Marcus Sommer's answer, as they are either wrong or do unnecessary extra work.
Ok i will try