Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
I Have create a BOM Table by repeat region,
Part no. 1 (A0001) has a 3 variant. As A0001, A0101, A0201.
For that I have generate a family table. and put a table in drawing by repeat region, called TABLE 1.
Now, I want to replace the word A0001 from BOM Table and Want to write "As per Table 1".
It mean, I want to show that the Item 1 has 3 variant, and that is as per table 1.
I don't want to write manually.
Is there any option?
Yes, write a repeat region relation for the part number field.
if asm_mbr_name =='A0001'
asm_mbr_name = 'AS PER TABLE !'
else
asm_mbr_name = asm_mbr_name
endif
Not sure I have the asm_mbr_name in the right format/name, but you should be able to look in the existing cell for the right name.
It needs to be a new parameter name; the repeat region can't overwrite an existing parameter
For example:
if asm_mbr_name =='A0001'
repeatregion_name = 'AS PER TABLE !'
else
repeatregion_name = asm_mbr_name
endif
And the repeat region column will be
&rpt.rel.repeatregion_name