CBH_Service_Acc
24 days agoQrew Trainee
Format Numeric Value 2 Decimal Places
Hello, I have a Formula Text that calculates and displays data based on the numbers users enter in two other numeric fields. Example: When a user enters a number in my Numerator and Denominator fiel...
- 24 days ago
Try the Round function:
ToText(Round($Numerator/$Denominator,0.01) & " %")The 0.01 tells Quickbase to round to two decimal places.