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: 
Rachel_F
Contributor II
Contributor II

How to add currency symbol before values in chart

How to add currency symbol before values in chart 

I have generated a graph to show money values as shown below. But I am not able to add currency symbol before the amount on Y-axis. 

The expression I used is

=Dual('$'&Num(Sum(Award Amount)/Pow(10,3*Div(Log10(Fabs(Sum(Award Amount))),3)),'#,##0.0')&' '&Pick(Div(Log10(Fabs(Sum(Award Amount))),3),'K','M','B','T'), Sum(Award Amount)),

how can I modify this to get currency symbol on Y-axis.

Rachel_F_2-1686938533405.png

Rachel_F_1-1686938460673.png

 

 

Labels (3)
1 Solution

Accepted Solutions
rubenmarin

Hi, you can try adding it to the num function: '$#,##0.0'. And use the num function in both dual parameters

View solution in original post

2 Replies
rubenmarin

Hi, you can try adding it to the num function: '$#,##0.0'. And use the num function in both dual parameters

Rachel_F
Contributor II
Contributor II
Author

Thank you but that did not work for what I was working on.