Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have to write expression when
Progress <>'In', 'Out', 'Delete ' then count of ID
can anyone suggest me please.
Thanks.
=COUNT({<Progress -= {'In','Out','Delete'}>}DISTINCT ID)
Try something like this:
=Count({<Progress = e({<Progress = {'In', 'Out', 'Delete'}>})>} ID)
you might need a DISTINCT if you only want to count the unique instances.
HTH
Best,
S
Hi,
Try something similar:
count(distinct if(filedname<>0, UserID)
or
count(distinct if(UserID<>0, UserID)
or
count({$<UserID-= {'0'}>} distinct UserID)
Thanks,
AS
=COUNT({<Progress -= {'In','Out','Delete'}>}DISTINCT ID)
Try this:
count({$<Progress-= {'In', 'Out', 'Delete'}>} distinct ID)
Thanks,
AS
Thanks for all answers
Hi,
=COUNT({<Progress -= {'In','Out','Delete'}>}DISTINCT ID)
=count(if(not wildmatch(Progress,'In','Out','Delete'),ID)
Regards,
Mukesh
Hi,
Try this.
=Count({$<FieldName = e({$<Progress = {'In', 'Out', 'Delete'}>})>} ID)