Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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 (4)
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.