Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations LittleInch on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

FILTER BLANK RECORDS IN A REPEAT REGION

  • Thread starter Thread starter maesoph
  • Start date Start date
M

maesoph

Guest
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
 
You can write an 'If' relation ...
 
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
 

Part and Inventory Search

Sponsor

Back
Top