Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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')
Thanks,
Shan
Simply try:
=num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'$##,##0')
Good luck
Oscar
Simply try:
=num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'$##,##0')
Good luck
Oscar
Hi,
Try like
='$'&num(Sum({<[ItemID] = {'SA', 'CP' }>} TotalInvoiceInFunCur),'##,##0')
Regards
Anand
Thanks Guys. Both way it works.
Regards
Shan