Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Natalie
Contributor II
Contributor II

How can I unit two expressions of set analyses?

I have this: 

Count({<priority={'high'}>}priority) 

and this:

Count({<status ={'Open', 'Closed'}>}status)

I need to unit them but i dont know how, someone can help?

 

Congrats!! Im new in Qlik, im noob yet!

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

You can try this.

Count({<status ={'Open', 'Closed'},priority={'high'}>}status)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
andoryuu
Creator III
Creator III

Side note, if you are looking for a count of everything that is open,closed OR high you would do this:

Count({<status ={'Open', 'Closed'}>+<priority={'high'}>}status)