Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello
i'm a new user of qlik.
i want to count how mach track_no have status "sent"
countcount(distinct TRACK_NO) if (STATUS_EXCP_CODE = 'sent)
what is the correct syntax?
Hi,
Use a set analysis with:
count({$<STATUS_EXCP_CODE = {"sent"} >} distinct TRACK_NO)
As sergio0592 set analysis is the way to go for these kind of questions, but in case you want to learn the if syntax... it would look like this
Count(DISTINCT If(STATUS_EXCP_CODE = 'sent', TRACK_NO))
thanks you very much !!!
it is working
thanks you very much !!!
it is working