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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
cbaqir
Specialist II
Specialist II

Display Future Months

I am building a dashboard that shows a straight table of roles with a negative FTE Variance. I have two dimensions: MonthYear and Role. FTE Variance is an expression that looks at the total of hours of resource capacity/possible working hours minue the total of hours allocated/possible working hours.

It only shows records where the FTE Variance is less than 1 by using the Dimension Limits->Show only values that are Less Than -1 exact amount.

I want this table to only show the records in the future months (to allow the user to identify resource gaps). I was trying to get it to show by using Dimension Limits->Show only values that are Greater than today() on the MonthYear field, but it isn't working.

Help!

Labels (1)
5 Replies
ecolomer
Master II
Master II

Try this:

Sum({<MonthYear ={">=$(=Max(MonthYear))"}>}  Role)

for the future Months than selected Month

cbaqir
Specialist II
Specialist II
Author

Where am I trying that expression, Enrique?

ecolomer
Master II
Master II

In a pivot table for example

P08.png

ecolomer
Master II
Master II

Can you see good?

cbaqir
Specialist II
Specialist II
Author

So, I have my expression that calculates the negative FTE in the Expression Definition ( $(vHeadcount) ).

I'm confused on where your expression would go...

SUM
(
{$<
EFFORT_DATE = {">=$(#vCurrentDate)"}>}
$(vHeadcount)
)