indy4300 Posted June 2, 2016 Posted June 2, 2016 (Building Height *12 - Pallet Height ) / ( Pallet Height+ 3) (10' x 12 = 120 - 57" = 63" ) / ( 57 + 3 = 60" ) = 1.05 I need to round this to 1
doughemi Posted June 2, 2016 Posted June 2, 2016 If you need to always round down, wrap the Floor( ) function around your calculation. If you need to always round up, use the Ceiling( ) function. If you need to round normally (under 5 down, over 5 up), use the Round ( ) function with a precision of 0 [e.g. Round( (Building Height *12 - Pallet Height ) / ( Pallet Height+ 3); 0) ]
Recommended Posts
This topic is 3097 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now