Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Limit data in graph to last date

Hi!

In the enclosed report I have data for around the previous 30 days.

I have on line graph that should show data for every date.

The other graph should only show data for the previous day.

How to do this?

/Stefan

5 Replies
Gysbert_Wassenaar

Which other graph? The bar chart?


talk is cheap, supply exceeds demand
stekol61
Creator
Creator
Author

Hi!

Yes, the bar chart on Sheet1

/Stefan

vinieme12
Champion III
Champion III

add the following Set to all your expressions

Sum ( {<Date = {"$(=DATE(Max(Date)-1,'YYYY-MM-DD'))"}>}lat_dis_0_10_ms)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

or use the following calculated Dimension

= if(num(Date) = Max( TOTAL Date)-1 ,Date,null())


and check Supress when value is null for this dimension

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
stekol61
Creator
Creator
Author

Hi!

This solved the problem.

Thank You

/Stefan