Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
kevbrown
Creator II
Creator II

Text Box Calculation

I have a text box with a calculation that is looking at a precentage. I would like that percentrage at 2 decimal places and not he10 it currently is, how do i limit it to 2 decimal places?

Thanks

1 Solution

Accepted Solutions
morganaaron
Specialist
Specialist

Hi Kevin,

Wrap it in a num statement and specify the number of DP's:

So Num([Your Expression], '###.##%')

View solution in original post

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Write:

Num(myexpression, '#.##0,00 ')

hope it helps

morganaaron
Specialist
Specialist

Hi Kevin,

Wrap it in a num statement and specify the number of DP's:

So Num([Your Expression], '###.##%')

krishna20
Specialist II
Specialist II

Hi,

Goto Number tab-> select Fixed to 2 decimals and enable show in Percent.

Regards

Krishna

kevbrown
Creator II
Creator II
Author

Thank you