Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Revenue and % change in one chart

Hi,

I'm trying to build a chart (like the one below) showing montly revenues and % change but I cannot get the right expression of the change. Any ideas?

Regards,

Ivelin

1 Solution

Accepted Solutions
Gysbert_Wassenaar

revenue: sum(revenue)

% change: sum(revenue)/above(sum(revenue))-1

You'll have to use a secondary axis for the % change expression or you'll have a line hovering between 0 and 1

Also you won't have a % change value for the first year


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

revenue: sum(revenue)

% change: sum(revenue)/above(sum(revenue))-1

You'll have to use a secondary axis for the % change expression or you'll have a line hovering between 0 and 1

Also you won't have a % change value for the first year


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks Gysbert!