Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Manisha1407
Contributor III
Contributor III

Count of invoices begin with CIN

Hello Team,

 

I have a field name as Invoice with the following invoice numbers:

Invoice

CIN202021

RIN218181

CIN202021

CIN211202

RIN237111

SMR103011

 

I want to make a count of all invoices begin with CIN and RIN and SMR.

 

Thanks

Labels (1)
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

Count({<Invoice={"CIN*","RIN*","SMR*"}>} Invoice)

or make a chart with Left(Invoice,3) as dimension, and use Count(Invoice) as measure.

View solution in original post

2 Replies
hic
Former Employee
Former Employee

Count({<Invoice={"CIN*","RIN*","SMR*"}>} Invoice)

or make a chart with Left(Invoice,3) as dimension, and use Count(Invoice) as measure.

Manisha1407
Contributor III
Contributor III
Author

Thank you so much!!

It worked for me.