Skip to main content

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

Try

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

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


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!