Forum Discussion

CBH_Service_Acc's avatar
CBH_Service_Acc
Qrew Trainee
24 days ago
Solved

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...
  • hueyal's avatar
    24 days ago

    Try the Round function:

    ToText(Round($Numerator/$Denominator,0.01) & " %")

    The 0.01 tells Quickbase to round to two decimal places.