I have a BOM generated from an assembly drawing. The assembly drawing is typical for one assembly. I want to add a colum to the report thatmultiplies paramater values for the one typical assembly by the quantity to be produced. I have a parameter "QUANTITY" that was created in the assembly model that I amable to show in the drawing notes. I want that same parameter to be used to generate the report totals. I have tried several iterations in the report relations, but cannot seem to get it right.
My report relations as they are now (and work)
if asm_mbr_length==0
total_length="-"
ELSE
total_length=RPT_QTY*asm_mbr_length/12
ENDIF
total_weight=RPT_QTY*asm_mbr_weight
I want to mulptiply total_length and total_weight x QUANTITY.
I don't want to create a parameter within the report region that requires input.
The QUANTITY parameter is input external to the region.
Any suggestions?
Thanks Harry
My report relations as they are now (and work)
if asm_mbr_length==0
total_length="-"
ELSE
total_length=RPT_QTY*asm_mbr_length/12
ENDIF
total_weight=RPT_QTY*asm_mbr_weight
I want to mulptiply total_length and total_weight x QUANTITY.
I don't want to create a parameter within the report region that requires input.
The QUANTITY parameter is input external to the region.
Any suggestions?
Thanks Harry