Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.
I have my parameter DIMENSION in our BOM-list and I want to show eg. the cutting length 40x40 L=500. So I dont want to add more parameters in the BOM. Can it be done in another way?
Because DIMENSION parameter is probably of type String, you need to convert the Real Number dimension of the part d7 to type String.
Write the following relation:
HEIGHT = itos(d1)
WIDTH = itos(d2)
LENGTH = itos(d3)
DIMENSION = HEIGHT+"x"+WIDTH+" L="+LENGTH
In this case, "d1" is dimension which references the height of the part (40), "d2" references the height (40) and "d3" references the length (500), so you need to insert your own part dimensions in relations for height, width and length.
Be aware, that ITOS function converts integer to string and therefore cuts away the numbers right of the decimal point, so when you have length of 500.3, the LENGTH shown in DIMENSION parameter will be equal to 500.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.