Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Currency symbol

=varCurrencySymbol&''&sum(Amount)*sum(ExchangeRate)

I have the above expression in the text object and it is working fine but the same expression is not working in the chart.Any idea why ?

Thank you.

7 Replies
sunny_talwar

Does this along is working -> sum(Amount)*sum(ExchangeRate)?

Not applicable
Author

yes..it is working

sunny_talwar

What is your expression for varCurrencySymbol?

Not applicable
Author

never mind ..I tried below exp and it is wroking fine.

=Num(Sum(Amount)*Sum([ExchangeRate]),varCurrencySymbol &''&'#,##0')

varCurrencySymbol  has diff currency symbols.


Thank you very much.

HirisH_V7
Master
Master

Symbol means is that image?? or Text??

HirisH
“Aspire to Inspire before we Expire!”
rodri_morales
Creator II
Creator II

If varCurrencySymbol is a text maybe you could try this:

=$(varCurrencySymbol)&''&sum(Amount)*sum(ExchangeRate)

or another option:

='$(varCurrencySymbol)'&''&sum(Amount)*sum(ExchangeRate)

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

=Num(sum(Amount)*sum(ExchangeRate), varCurrencySymbol & '#,##0')

Hope this helps you.

Regards,

Jagan.