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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Combo Chart Expression % Change

I'm having issues with my line chart expression. I'm trying to create a % change from month to month but my percentages are incorrect. If someone can help, great. But could you also explain to me what I'm doing incorrectly? Thanks.

I want to see the % change from month to month and my values are incorrect.

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this:

If(RowNo() <= 6, Num(Count({<[Start Date Month] = {"*201*"} >} Member)

/

Below(Count({<[Start Date Month] = {"*201*"} >} Member), 1) - 1, '#.00%'))


Capture.PNG

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

What are the numbers you are expecting to see John?

Anonymous
Not applicable
Author

For the line chart, % Change from month to month. All other values are correct.

201608 would be 5.6% decrease The difference between 54,087 and 51,061

201607 would be 7.2% decrease. The difference between 58,280 and 54,087

sunny_talwar
MVP
MVP

Try this:

If(RowNo() <= 6, Num(Count({<[Start Date Month] = {"*201*"} >} Member)

/

Below(Count({<[Start Date Month] = {"*201*"} >} Member), 1) - 1, '#.00%'))


Capture.PNG