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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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!