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

Announcements
Solving the Informatica Dilemma: On-Demand Briefing - Watch On Demand!
cancel
Showing results for 
Search instead for 
Did you mean: 
Sxbbb
Creator III
Creator III

Want the first bar to show the Count and %, but using the formula, only one character comes up

Suchanan_0-1669783848393.png

Want the first bar to show the Count and %
Code used OK

Suchanan_0-1669784288738.png

 

Code used NG

Suchanan_1-1669784327951.png

 

Suchanan_2-1669784353516.png

 

 

 

1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like below

Code Count NG:

Dual(Sum(CountReject)&'('& Num ( Sum(CountReject)/Sum(CountSpindle) , '#,##0%') &')',

Sum(CountReject))

 

Code Count OK : 

Dual( (Sum(CountSpindle)-Sum(CountReject))&'('& Num ( (Sum(CountSpindle)-Sum(CountReject))/Sum(CountSpindle) , '#,##0%') &')',

 (Sum(CountSpindle)-Sum(CountReject)))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

8 Replies
Sxbbb
Creator III
Creator III
Author

want to display every bar
MayilVahanan

HI

Did u check the "Value on Data Points" on the first bar ?

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Sxbbb
Creator III
Creator III
Author

Suchanan_0-1669788650429.png

Suchanan_1-1669788665504.png

Result :

Suchanan_2-1669788703925.png

 

 

Sxbbb
Creator III
Creator III
Author

Want the first bar to show the Count and %
MayilVahanan

Hi

Try with Dual function like below

Dual(100 &'('&10 &'%)',100)

 Dual( ur display expression , ur bar height expression)

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Sxbbb
Creator III
Creator III
Author

At first I did this. But I want concatenated values ​​like 49(91%) and 5(9%) to be in 1 bar chart.

Suchanan_0-1669791312139.png

Code Count OK : (Sum(CountSpindle)-Sum(CountReject))

Code Count NG : Sum(CountReject)

Code %OK : (Sum(CountSpindle)-Sum(CountReject))/Sum(CountSpindle)

Code %NG : Sum(CountReject)/Sum(CountSpindle)

 

MayilVahanan

Hi

Try like below

Code Count NG:

Dual(Sum(CountReject)&'('& Num ( Sum(CountReject)/Sum(CountSpindle) , '#,##0%') &')',

Sum(CountReject))

 

Code Count OK : 

Dual( (Sum(CountSpindle)-Sum(CountReject))&'('& Num ( (Sum(CountSpindle)-Sum(CountReject))/Sum(CountSpindle) , '#,##0%') &')',

 (Sum(CountSpindle)-Sum(CountReject)))

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Sxbbb
Creator III
Creator III
Author

I got it, thank you very much