Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
AH
Creator III
Creator III

How to put Dollar sign

Hi I have textbox which provides me some amount in dollar. I want to put a $ sign before the price amount. the expression behind the text box is:

=num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'##,##0')

Capture.PNG.png

Thanks,

Shan

1 Solution

Accepted Solutions
oscar_ortiz
Partner - Specialist
Partner - Specialist

Simply try:

=num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'$##,##0')

Good luck

Oscar

View solution in original post

3 Replies
oscar_ortiz
Partner - Specialist
Partner - Specialist

Simply try:

=num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'$##,##0')

Good luck

Oscar

its_anandrjs

Hi,

Try like

='$'&num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'##,##0')

Regards

Anand

AH
Creator III
Creator III
Author

Thanks Guys. Both way it works.

Regards

Shan