Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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