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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to Make a graph with the differences

Hello Guys,

error loading image

The graph does not see good if I select the CounterRdgDifference

error loading image

How Can I get this correct as I dont want this firstvalue to be seen.

Thanks

sravan

11 Replies
Not applicable
Author

I hope someone can help me.

Thanks a lot

sravan

johnw
Champion III
Champion III

I believe this:

sum(aggr(if(MeasuringReading<>DifferenceReading, DifferenceReading), Calendar.Year, Calendar.Month, Calendar.Day))

However, what I'd do instead is fix the difference reading as you load the data:

if(MeasuringReading<>DifferenceReading,DifferenceReading) as DifferenceReading

Then you can just use this:

sum(DifferenceReading)