Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Number Format Problem

Hello,

I have '$#,##0;$-#,##0' format number 

Show me this 67,554,987

But I want to change to '$#.##0;$-#.##0'

and show me this 67554987.520

I need to show this 67.554.987

 

Thanks!!

1 Solution

Accepted Solutions
pgalvezt
Specialist
Specialist
Author

Finally I got it !!

Here the solution:

Num( Num#(If(Field=' TRUE',0,Field),' #,### ' , '.' , ' ' ),'#.###,0',',','.')

123.456.678

View solution in original post

2 Replies
SerhanKaraer
Creator III
Creator III

Hello Pgalvezt,

It seems in your script, seperator values are defined as this way:

SET ThousandSep=',';
SET DecimalSep='.';

Either you can change them, or you can overwrite them by choosing custom format for the measure.

image.png

pgalvezt
Specialist
Specialist
Author

Finally I got it !!

Here the solution:

Num( Num#(If(Field=' TRUE',0,Field),' #,### ' , '.' , ' ' ),'#.###,0',',','.')

123.456.678