Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

KPI with date variable

Hi experts!

I have this problem: I have a slider that set a DateVariable (VariableDate) defined like (=today()).

I need to show that variable with a KPI, and i simply added one formatted as Date with the expression =(VariableDate). (until this point everything ok)

I need also to set a kpi that shows the average of a field before the date i set with the slider. The expression I used is this one:

Avg({<FieldDate={'<=$(DateVariable)'}>} MyField)   but it does not show anything.

Anyone can help me?

Thankyou!

2 Replies
sunny_talwar

May be try this:

Avg({<FieldDate={'<=$(=DateVariable)'}>} MyField)

OmarBenSalem

If the variable is already defined as =TODAY() why add another = ?

Avg({<FieldDate={'<=$(=DateVariable)'}>} MyField)


Maybe the quotes are the problem?

and

Avg({<FieldDate={"<=$(DateVariable)"}>} MyField) would do the trick?