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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
cattaneoc
Contributor II
Contributor II

Challenge: Two-column chart

Hi, I need to create a graph with the next table:


TMP grafico .jpg

QV can do it?

Thank you!

Carlos

1 Solution

Accepted Solutions
MarcoWedel

Hi,

maybe another solution might be:

QlikCommunity_Thread_255250_Pic1.JPG

QlikCommunity_Thread_255250_Pic2.JPG

QlikCommunity_Thread_255250_Pic3.JPG

QlikCommunity_Thread_255250_Pic4.JPG

CrossTable (Type, Value)

LOAD * INLINE [

    póliza, a, b

    1,   7%, 12%

    2,  12%, 23%

    3,   9%,  9%

    4,   4%, 23%

    5,   2%, 24%

    6,   2%, 24%

    7,  18%,  8%

    8,  19%, 17%

    9,   7%,  3%

    10, 23%, 14%

    11,  7%, 13%

];

hope this helps

regards

Marco

View solution in original post

6 Replies
devarasu07
Master II
Master II

Hi,

Something like this?

qlik.png

el_aprendiz111
Specialist
Specialist

Hi,

class.gif

MarcoWedel

Hi,

maybe another solution might be:

QlikCommunity_Thread_255250_Pic1.JPG

QlikCommunity_Thread_255250_Pic2.JPG

QlikCommunity_Thread_255250_Pic3.JPG

QlikCommunity_Thread_255250_Pic4.JPG

CrossTable (Type, Value)

LOAD * INLINE [

    póliza, a, b

    1,   7%, 12%

    2,  12%, 23%

    3,   9%,  9%

    4,   4%, 23%

    5,   2%, 24%

    6,   2%, 24%

    7,  18%,  8%

    8,  19%, 17%

    9,   7%,  3%

    10, 23%, 14%

    11,  7%, 13%

];

hope this helps

regards

Marco

devarasu07
Master II
Master II

Hi,

Is your issue resolved? help to close this thread. Thanks

Regards,

Deva

cattaneoc
Contributor II
Contributor II
Author

All answers are correct and applicable !! many thanks!!

cattaneoc
Contributor II
Contributor II
Author

Hi Marco,

Is it possible to modify the expression so that the zero is a separate bar?

=Aggr(Dual(Num(Floor(Poliza%,Var_Rango%),'0%')&' y '&Num(Floor(Poliza%,Var_Rango%)+Var_Rango%,'0%'),Floor(Poliza%,Var_Rango%)),Poliza%)

Var_Rango% = 5.0%

Example:

-15% y -10%

-10% y -5%

-5% y < 0%

0%

>0% y 5%

5% y 10%

5% y 10%

10% y 15%

thank you very much!