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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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.

Labels (1)
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
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
Partner - Champion III
Partner - Champion III

Hi,

Try like this

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

Hope this helps you.

Regards,

Jagan.