DRAWING BOM TABLE USING REPEAT REGIONS AND RELATIONS
I am wanting to create two descriptions on the model for use on a new parts book template I am creating:
- Description (used on shop floor drawings)
- Part Book Description (Given to the customer with minimum detail )
I would like the BOM table to look at model and use this logic:
If model has a “Description” & “Part Book Description” use “Part Book Description”
If model has a “Description” & No “Part Book Description” use “Description”
I have written this IF statement but it does not seem to work. Am i doing something wrong
IF EXISTS("asm_mbr_partbook")
DESCRIPTION = asm_mbr_partbook
ELSE
DESCRIPTION = asm_mbr_description
ENDIF
Any help appreciated
thanks

