Dmichigan05
New Member
- Joined
- Aug 8, 2023
- Messages
- 15
- Office Version
- 365
I have an attachment for anyone whom can help me. I am looking to make the rounding method in the end of my function round these up instead of saying 1ft 12in. It will only happen right now when I use very specific centimeters meters or millimeters because the formula is recognizing the inches as a decimal of 11.8 and thus rounding to 12. Problem is the formula doesn't recognize when it's 12 inches that it needs to then say 2FT 0In. instead.
=INT(I4/12)&"' "&ROUND(MOD(I4,12),1)&"""" = the current formula in the feet and inches area.
CM | Weight Kgs | INCHES | FEET & IN | Weight LBS | ||||||
Length | Width | Height | Length | Width | Height | Length | Width | Height | ||
30 | 0 | 0 | 0 | 12 | 0 | 0 | 0' 11.8" | 0' 0" | 0' 0" | 0 |
60 | 0 | 0 | 0 | 24 | 0 | 0 | 1' 11.6" | 0' 0" | 0' 0" | 0 |
91 | 0 | 0 | 0 | 36 | 0 | 0 | 2' 11.8" | 0' 0" | 0' 0" | 0 |
121 | 0 | 0 | 0 | 48 | 0 | 0 | 3' 11.6" | 0' 0" | 0' 0" | 0 |
152 | 0 | 0 | 0 | 60 | 0 | 0 | 4' 11.8" | 0' 0" | 0' 0" | 0 |
182 | 0 | 0 | 0 | 72 | 0 | 0 | 5' 11.7" | 0' 0" | 0' 0" | 0 |
213 | 0 | 0 | 0 | 84 | 0 | 0 | 6' 11.9" | 0' 0" | 0' 0" | 0 |
=INT(I4/12)&"' "&ROUND(MOD(I4,12),1)&"""" = the current formula in the feet and inches area.