Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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

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

View solution in original post

3 Replies
tresesco
MVP
MVP

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