Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
mhmmd_srf
Creator II
Creator II

Showing Value in Bar Chart

Hi All,

I have a bar chart like this:

My expression is below:

=Dual(Num(Sum(ContractDollars) / Sum(TOTAL <CstFiscalYear> ContractDollars), '#.#%'), Sum(ContractDollars) / 1000000)

Now I want to show the Sales Value as well in Bar just below the Percentage value.

Could you please help me on this.

Thanks,

Sarif

1 Solution

Accepted Solutions
maxgro
MVP
MVP

Example in the attachment

1.png

View solution in original post

4 Replies
maxgro
MVP
MVP

maybe with 2 expression

Sum(ContractDollars)

Num(Sum(ContractDollars) / Sum (TOTAL <CstFiscalYear> ContractDollars), '#,##0.0%') &

chr(10) &

Num(Sum (ContractDollars), '#,##0')

for the second expression uncheck bar

and check value on data point

mhmmd_srf
Creator II
Creator II
Author

Not working sir..

Please help.

Thanks,

Sarif

maxgro
MVP
MVP

Example in the attachment

1.png

rzenere_avvale
Partner - Specialist II
Partner - Specialist II

Nice one, thank you!