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: 
rutger_jansen
Contributor III
Contributor III

Custom y-axis values

Hi,

I'm trying to produce a chart with string labels for the y-axis. The y-axis is currently numeric and is the result of a calculation.

Data is like this:

LOAD * INLINE [

    Month, Class, Value

    Jan, A, 200

    Jan, B, 300

    Jan, C, 200

    Feb, A, 150

    Feb, B, 100

    Feb, C, 600

];

This is transformed as follows:

round( sum(if( Class='A',(1*Value), if( Class='B',(2*Value), 3*Value))) / sum(Value) )

To give these weighted values (this is what I have):

Jan, 2

Feb, 3

No I want to get to a chart showing:

Jan, B

Feb, C

I haven't been able to figure out if Dual() can be used for this.

Any help would be greatly appreciated

Regards

Rutger

1 Solution

Accepted Solutions
sunny_talwar

Are you looking for something like this?

Capture.PNG

View solution in original post

2 Replies
sunny_talwar

Are you looking for something like this?

Capture.PNG

rutger_jansen
Contributor III
Contributor III
Author

Hi Sunny,

Yes, it comes close but is it possible to get the Y-axis to show A, B, where it currently shows 1, 2 & 3?

Thanks very much,

Rutger