cancel
Showing results for 
Search instead for 
Did you mean: 

Value getting roung off while using to text .

Former Member
0 Kudos

Dear Experts ,

I am applying below formula in Display String , But my value getting Round off .

for Ex : totext (41.665,'###,####,###.000') . I am getting output value as 41.670 , but i want to display 41.665 . Please suggest .

Accepted Solutions (1)

Accepted Solutions (1)

former_member373051
Participant
0 Kudos

Hi Sri,

u can try below hope this help

totext (41.665,'###,####,###.000',3)

Answers (1)

Answers (1)

Former Member
0 Kudos

Use this instead

totext(41.665,3, ",")

Ian