Skip to main content
Solved

Is there any way to round up these qauntities?

  • June 28, 2022
  • 2 replies
  • 30 views

Is it possible to round up those really long decimals?
Thank you!

Best answer by Kamille_Parks11

Try

ROUND(Boxes Available, 2) & ' '& {Shipped In/On Plural}

^ the 2 means 2 decimal places, so 2.6999999 would be 2.7

2 replies

Kamille_Parks11
Forum|alt.badge.img+27

Try

ROUND(Boxes Available, 2) & ' '& {Shipped In/On Plural}

^ the 2 means 2 decimal places, so 2.6999999 would be 2.7


  • Author
  • New Participant
  • June 28, 2022

Try

ROUND(Boxes Available, 2) & ' '& {Shipped In/On Plural}

^ the 2 means 2 decimal places, so 2.6999999 would be 2.7


That worked! Thanks a bunch friend!