Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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.

1 Solution

Accepted Solutions
sunny_talwar

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

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

Try this:

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

/

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


Capture.PNG