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: 
mario-sarkis
Creator II
Creator II

Set analysis date issue

hey all i have a field Of this form "last interaction date"(6/1/2016,....) my question is:

the data set contain list of client ids with their last interaction date:

i need to show a list of clients that are not contact the last six month

how can i write in the set analysis?

Hope you can help.

thanks you

3 Replies
MK_QSL
MVP
MVP

Provide some sample data to work.

jonathandienst
Partner - Champion III
Partner - Champion III

Something like:

Concat({<[last interaction date] = {"<=$(=AddMonths(Today(1), -6))"}>} distinct ClientName, ', ')

to display in a list box. Replace ClientName with the correct field name.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
jonathandienst
Partner - Champion III
Partner - Champion III

Or for a calculated dimension:

=Aggr(Only({<[last interaction date] = {"<=$(=AddMonths(Today(1), -6))"}>} ClientName), ClientName)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein