Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am quite new to Qlik and have no real knowledge yet. So I apologize for what is probably a very simple question for you.
I would like to make an evaluation where I would like to count the number of our invoices using the count function.
The problem is that the same field which is called "Document No." also contains delivery note numbers.
I only want to count the invoices that start with AR....
Which settings should I make?
I hope you can help me
Hello and welcome to the Green side of the Force.
Please, try this:
Count({$<[Document No]={"AR*"}>} Distinct [Document No])
Hello and welcome to the Green side of the Force.
Please, try this:
Count({$<[Document No]={"AR*"}>} Distinct [Document No])
Hello Marcel,
Try like this -
COUNT(IF(Document No. LIKE 'AR*' , Document No.))
Thanks.
If statements are usually not recommended in expressions, since it provides a worse performance than Set Analysis, which is what I am proposing above.
Okay. Thanks for the information.
It works perfect. Thank a lot for helping.