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 OR syntax

I am trying to add an additional parameter to a set analysis expression -

where client leave date = 01/01/1900 OR client leave date >= a loaded variable vDateStartWeek

Trying variances of the below but I cannot get it display correctly?

[Client leaveDate]  = {01/01/1900}> + <[Client leaveDate] = {">=$(=Date(vDateStartWeek))"}>},

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try {<[Client leaveDate]  = {'01/01/1900', '>=$(=Date($(vDateStartWeek)))'}>}


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
giakoum
Partner - Master II
Partner - Master II

[Client leaveDate]  = {01/01/1900} + {">=$(=Date(vDateStartWeek))"}>}


Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try {<[Client leaveDate]  = {'01/01/1900', '>=$(=Date($(vDateStartWeek)))'}>}


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you, works well.