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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

How to make it return with out decimal point ?

Hi All

I use below expression :-

money(

sum(sales/Rate)

,$#,##0)

it return with 2 decimal point.

May i know how to make it return with decimal point ?

Paul

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Is this a typo? Did you put quotes around the format like?

money( sum(sales/Rate) ,'$#,##0')

View solution in original post

3 Replies
tresB
Champion III
Champion III

Is this a typo? Did you put quotes around the format like?

money( sum(sales/Rate) ,'$#,##0')

kamal_sanguri
Specialist
Specialist

Try this

=money(sum(sales/Rate),'$#,##0','.',',')

paulyeo11
Master
Master
Author

Hi All

Thank you very much , all work.

Paul Yeo