Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dollar symbol for Amounts


Hi,

I implemented Bar Chart, in X-Axis i  wrote Sum(Amounts) as a Expression,

How to Assign Dollar symbol for this Amounts.

Please help me.

Thanks,

MLNR

5 Replies
Anonymous
Not applicable
Author

goto properties, tab "numbers" and select your Expression and

Change to Money format

Anonymous
Not applicable
Author

Go to the Number tab of the Chart.

  • Select the Expression
  • Set it to Money
  • Give it a format pattern something like
    • $#,##0.00;($#,##0.00)
Not applicable
Author

Hi Narayana,

First select expression ,then go to Number.Do changes as mentioned on image ,Also use $ symbol in Symbol field .Screenshot (9).png

MarcoWedel

Or use an expression like

Money(Sum(Amounts) )

instead of Sum(Amount)

Not applicable
Author

may this help you

=Money(Sum(Amount)) // this create format like $ 25,23.00

=Money(Sum(Amount),'$ #,##,###') // this create format like $ 25,23