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: 
Not applicable

Suppres some months on a time dimensions

Hi all

I have a bar chart with a MONTH dimension and 2 expressions.

The fisrt expression is the the incomming ($$$)

The second  expression is the "predicted" ($$$)

What I need is to supress current month year, i.e (jan, feb) and show only the other (mar, apr, may, jun, jul, aug..... and so on)

Do you guys have any clue on how to suppres some months on a time dimensions???

Thanks ...

2 Replies
swuehl
MVP
MVP

If MONTH dimension was created using month() function in the script, you could create a calculated dimension like this to limit your MONTH dimension values:

=if(MONTH > month(today()), MONTH)

You could also use a set expression to achieve the same, but you would need to apply the set analysis to each expression in your chart, something like

=sum({<MONTH = {">$(=month(today()))"}>} incoming)

hope this helps,

Stefan

v_iyyappan
Specialist
Specialist

Hi,

     Use the Expression like this,

     =if((Year) > Year(today()) OR Month > Month(today()), Sum(incoming))

Regards,

Iyyappan