Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Drawing Tables

g_spy20

New member
In my drawing table I am using variable dimensions to determine whether a feature is present in the certain instance. In the two pictures, the first contains dashes when the feature is nonexistant. The second picture is of a similar table, but the features that are nonexistant show up as zeros. I would prefer the results of the first table, but have been unable to consistantly replicate it.


View attachment 5456


View attachment 5457
 
you need to write/modify table relations for that.
Relations should put value of dimension as "-", when dim. value comes to 0.
like,
if B==0
fam_inst_param_value == "-"

check the syntax..i m not sure about that
smiley1.gif
 
I need one help

In Repeat Region Description column, part Length x part
width x part Height (parametric) value will be come ????
Any possible is there? please give suggestion.



Ex
ITEMPART NODESCRIPTION
 
To show Width x length x height in BOM:
Relations:
Length = ITOS(d15)
Width = ITOS(d16)
Height = ITOS(d17)
Size=Width+"x"+length+"x"+height
Then add & asm.mbr.size in BOM
Need " to make them work.
 

Sponsor

Back
Top