Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi every one , I have one field Pressure .How can i limit the values of these field up to 2 decimal .
I have values like 1485697456 in it.
Regards
Manu
What is expected output.
May be
=num( '1485697456','#,##0.00')/100
May be using Num()function like
Num(YourNumberfield, '#,##0.00')
In load statement, you can try this
Load
Num( Fieldname,'#,##0.00') as NewName
From.....
Where is the decimal in this number?
1485697456
Hi Sunny,
The values are like 455,82261
Vishwarth the values are like 155,882261
Seems like your decimal separator is a comma, is that right? If that is true, can you check if you have this in your environmental variables
SET ThousandSep='.';
SET DecimalSep=',';
If you do, then this seems to work
=Num('455,82261', '#.##0,00')
If you want to restrict values after decimal points
eg. 455.XXXXXXXXXXXXXXXXXXX to 455.XX
Then there are 2ways,
1) Simply go to Properties->Number,enable fixed radio button there & gives your required range.
2)You can use function Round() eg. Round(condition/count, '#####.##')