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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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

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

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