• By Inessa Peters
  • September 16, 2025
  • No Comments

Custom Fields – Rounding

Sometimes you need to work with rounded values in Empower.

No matter how many digits are displayed, Empower always calculates with all 14 digits in the background. But what if you need a rounded number – let’s say, 2 decimals?

✅ You can easily create a Custom Field using the ROUND function:

Formula: ROUND(Field,X)

👉 X is the number of decimal places you want to round to (as an integer).

Example: Amount = 2.6789 mg/mL 

  • ROUND(Amount,0) → 3
  • ROUND(Amount,-1) → 2.7
  • ROUND(Amount,-2) → 2.68
  • ROUND(Amount,-3) → 2.679

 

And of course — you can integrate this into further formulas: 
ROUND(Amount,-2) * Factor / 3

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert