Forum Discussion
LORDPHILLIP
Aug 30, 2023Copper Contributor
ROUNDING FORMULA TO NEAREST INCH IN DECIMAL FORM
Good afternoon y'all, I am in need of assistance with Excel. I don't quite know how to search for solutions to my problem, so I'm hoping that by starting this posting I can get some help from the pr...
- Aug 30, 2023
Try
=CEILING(B12*B3, 1/12)
If you want to round that to 2 decimal places, use
=ROUND(CEILING(B12*B3, 1/12), 2)
HansVogelaar
Aug 30, 2023MVP
Try
=CEILING(B12*B3, 1/12)
If you want to round that to 2 decimal places, use
=ROUND(CEILING(B12*B3, 1/12), 2)
LORDPHILLIP
Aug 30, 2023Copper Contributor
That's fantastic! Thank you so much for your help!