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

Set analysis and/or/and-or

Hey,

when i want "and" i will write: count({1<Test={'x'},Test2={'x'} >}TerminID)

when i want "or" i will write: count({1<Test={'x'}>+<Test2={'x'} >}TerminID)

how can i write: count({1<Test3={'x'} "and" (Test2={'x'} or Test2={'x'} )>}TerminID)

Thanks for helping

CS

2 Replies
sunny_talwar

May be this:

Count({1<Test3={'x'}, Test={'x'}>+1<Test3={'x'}, Test2={'x'} )>}TerminID)

Anonymous
Not applicable

Or:

Count({1<Test3={'x'}> * (1<Test={'x'}> + 1<Test2={'x'}> )} TerminID)