Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

selecting multiple dates on sheet activate

I have a standalone list box that has the last four payperiods and need to select the same 4 payperiods in another list box that has a whole big list of pay periods because I need to restrict the dataset that I am displaying in one pivot in my application.

I am using this ='('&Concat(LastFourPayPeriods.PayPeriodEndDT,'|')&')'  to select in field on activate but it will not work, the output looks ok but it just will not select the values.

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Maybe this works:

='('&Concat(distinct chr(34) & LastFourPayPeriods.PayPeriodEndDT & chr(34),'|')&')'


If not, you'll have to post more information. For example a sample document that demonstrates the problem.


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Not applicable
Author

Hi,

Try with this:

='("' & Concat(LastFourPayPeriods.PayPeriodEndDT,'"|"') & '")'

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Maybe this works:

='('&Concat(distinct chr(34) & LastFourPayPeriods.PayPeriodEndDT & chr(34),'|')&')'


If not, you'll have to post more information. For example a sample document that demonstrates the problem.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks this worked for me 🙂