Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
danieldors
Contributor III
Contributor III

Count with Exclude

I'm trying to exclude any data from unit 88527 from the formula below.  Thank you.

=count({<Unrun_Drivers={'1'},Action={'Application','Additional Benefit','Redetermination'>}distinct [Access Number])

[Unit]<>{'88527'}

 

4 Replies
Taoufiq_Zarra

Maye be :

=count({<[Unit]={"*"}-{'88527'},Unrun_Drivers={'1'},Action={'Application','Additional Benefit','Redetermination'>}distinct [Access Number])
Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
danieldors
Contributor III
Contributor III
Author

Thank for the response but that didnt resolve the problem.

Taoufiq_Zarra

can you share a sample data and the expected output ?

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Saravanan_Desingh

One solution.

=count({<[Access Number]={"=[Unit]<>'88527'"},Unrun_Drivers={'1'},Action={'Application','Additional Benefit','Redetermination'>}distinct [Access Number])