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

Announcements
Data Works for AI is here - Join the discussion and enter to win a pair of Qlik kicks: Join the Conversation!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

period over period growth%

Hello,

I'm trying to build a period over period growth % chart(not pivot table) but so far I didn't find a way to do that.

I was able get this in a pivot table using the before() function, but I want to do it also in a bar chart.

This is the formula I used for the growth % in the pivot table:

SUM(Amount)/Before(SUM(Amount)) - 1

Is there a way to do this in a chart? My time dimension is based on months.

Thanks in advance,

Daniel

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

In a straight table chart (or bar chart), try with the above() inter chart record function:

SUM(Amount)/ ABOVE(SUM(Amount)) - 1

View solution in original post

2 Replies
swuehl
Champion III
Champion III

In a straight table chart (or bar chart), try with the above() inter chart record function:

SUM(Amount)/ ABOVE(SUM(Amount)) - 1

Not applicable
Author

Hi Swuehl,

It works with Above().

Regards,

Daniel