M Mo Feb 7, 2005 #1 I need to work out how to obtain feet and inches from a value that's entered in centimeters. Can someone help. TIA
I need to work out how to obtain feet and inches from a value that's entered in centimeters. Can someone help. TIA
K Ken Snell [MVP] Feb 7, 2005 #2 Feet = (EnteredCentimeters / 2.54 ) \ 12 Inches = (EnteredCentimeters / 2.54) - (((EnteredCentimeters / 2.54 ) \ 12) * 12 )
Feet = (EnteredCentimeters / 2.54 ) \ 12 Inches = (EnteredCentimeters / 2.54) - (((EnteredCentimeters / 2.54 ) \ 12) * 12 )