Getting feet and inches from centimeters

M

Mo

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]

Feet = (EnteredCentimeters / 2.54 ) \ 12

Inches = (EnteredCentimeters / 2.54) - (((EnteredCentimeters / 2.54 ) \ 12)
* 12 )
 
Top