Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
curiousfellow
Specialist
Specialist

use max date < today in set analysis

I have a calendertable with startdates, enddates  and periodnames

I have sales with periodnames

Now I want to sum sales with set analysis where max(enddate) < today()

Because i did not succeed i first tried to find the max date with :

=max({<date(floor(MasterCalander.Enddate),'DD-MM-YYYY') = {'< $(date_today)'} >}MasterCalander.enddate)

date_today is a variable containing function today()

I don''t get any result. Searched this forum a lot, but nothing works.

What is wrong ??

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi Johan,

there are a few problems here:

1. Any Set Analysis filter should look like this:  

FieldName = {values}

You can't formulate a Set Analysis filter starting with a function.

2. Depending on the format of the variable date_today (dual or numeric), you may need to use it differently in Set Analysis.

I'd suggest to use an Advanced Search condition (enclosed in double quotes and beginning with an equal sign), that helps with both issues. Something like this following should work:

SUM(

          {<MasterCalander.Enddate = {"=max(MasterCalander.Enddate) < date_today"} >}

          Sales)

In Advanced Search conditions, date fields can be freely compared to numeric fields and variables don't need to be enclosed in a $-sign expansion.

cheers,

Oleg Troyansky

Learn Set Analysis and many other advanced techniques in my book QlikView your Business.

View solution in original post

1 Reply
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi Johan,

there are a few problems here:

1. Any Set Analysis filter should look like this:  

FieldName = {values}

You can't formulate a Set Analysis filter starting with a function.

2. Depending on the format of the variable date_today (dual or numeric), you may need to use it differently in Set Analysis.

I'd suggest to use an Advanced Search condition (enclosed in double quotes and beginning with an equal sign), that helps with both issues. Something like this following should work:

SUM(

          {<MasterCalander.Enddate = {"=max(MasterCalander.Enddate) < date_today"} >}

          Sales)

In Advanced Search conditions, date fields can be freely compared to numeric fields and variables don't need to be enclosed in a $-sign expansion.

cheers,

Oleg Troyansky

Learn Set Analysis and many other advanced techniques in my book QlikView your Business.