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.

FILTER BLANK RECORDS IN A REPEAT REGION

maesoph

New member
Dear All:


I have many tables using a repeat reagion to show the pin out of connectors on a harness drawing. Most of the pins on most of the connectors are unused and I wind up with a cluttered drawing filled with large tables mostly made of empty rows. I would like to filter by rule and ignore the emtpy lines. The parameters available to base the filter on are:


&mbr.connprm.pin.run.cond.name
&mbr.connprm.pin.run.cond.color


if either of the above is blank, I would like to skip that record in the repeat region. Thanks.


Mike
 
Here is the relation side which I think is correct:


BLANK = ""
if mbr_connprm_pin_run_cond_name == ""
BLANK = 1
endif


The filter should work if it accesses the BLANK variable. What is the syntax for doing that?
 
Got it finally. I also had to change the relation to0


&rpt.rel.BLANK == 1


BLANK = ""
if mbr_connprm_pin_run_cond_name != ""
BLANK = 1
endif
 

Sponsor

Back
Top