Request Math Formula

JAY6431

New Member
Joined
Mar 6, 2002
Messages
1
Need formula to convert meters to feet and inches instead of meters to feet and tenths.
Thanks
Jay
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Here's one way that requires the Analysis ToolPak add-in.

=TRUNC(CONVERT(A1,"m","ft"))&"' "&ROUND(CONVERT(MOD(CONVERT(A1,"m","ft"),1),"ft","in"),0) &""""

CONVERT is handy if you don't know the conversion factors or if you want to specify your units of measure in a worksheet cell and modify them as needed.
This message was edited by Mark W. on 2002-03-07 10:39
 
Upvote 0
Here's a way to do it. I'm sure you can adapt this to your application.

1 meters
39.3701 conversion factor
39.3701 total inches
3.3701 inches
3 feet
 
Upvote 0
Here's a way to do it. I'm sure you can adapt this to your application.

A B
1 1 meters
2 39.3701 conversion factor
3 39.3701 total inches =(A1*A2)
4 3.3701 inches =(MOD(A3,12)
5 3 feet =TRUNC(INT(A3)/12)
This message was edited by Dave Gibson on 2002-03-07 10:00
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,315
Members
449,081
Latest member
tanurai

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top