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: 
Not applicable

Set Analysis (count expression function)

The following function not working any one help on this.

I am tring to get count where account sub string = 0000 then those records should be count.

=count({$<mid(ACCOUNT_NO,26,4) = {'0000'}>} distinct ACCOUNT_NO)

2 Replies
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Remember that the Set Analysis search condition is anything that you could type into a List Box search.  Then the answer is:

=count({$<ACCOUNT_NO = {'*0000*'}>} distinct ACCOUNT_NO)

Regards,

Stephen

Stephen Redmond is author of QlikView for Developer's Cookbook
He is CTO of
CapricornVentis a QlikView Elite Partner. We are always looking for the right people to join our team.
Follow me on Twitter:
@stephencredmond


Not applicable
Author

Thanks it helps lot for me.

On Thu, Jun 27, 2013 at 5:17 PM, Stephen Redmond