Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formula to show both inches and mm for a length

Status
Not open for further replies.

djmjr

Aerospace
Feb 7, 2014
22
0
0
US
Hi everyone I'm hoping you can help me out here.

I've attach a picture that I hope helps to see what I am trying to do.

My global units is set to inches, because I am primarily working to inches. However, I am using components that require a metric designation in their part number. What I am trying to do is have a formula that sees the length of the pad, converts that number to the metric equivalent, then shows that automatically in both the Product Description and Part Number. I thought the round(L,"mm",1) would do that for me, but it didn't do what I thought.

Any help will be appreciated.

Thanks
 
 http://files.engineering.com/getfile.aspx?folder=067c0a43-1c21-472e-a279-b8696a9974a1&file=mm_number.PNG
Replies continue below

Recommended for you

If you are just looking for the numeric value you could utilize the following: ToString( Length.1 *25.4/1in ) If you want to include the units you could concatenate them with ToString( Length.1 *25.4/1in ) + "mm"

--Doug
 
Status
Not open for further replies.
Back
Top