Is there a property to Exclude in the Report definition so we can run a Weld Id list separated into Shop and Field Welds? Right now my Report look like this: #----------------------------------------------------------------------------- # A sample weld report #----------------------------------------------------------------------------- REPORT = WELD # this to include only WELD items INCLUDE = IE_TYPE=CT_WELD COLUMN = 11:C:WELDID COLUMN = 11:C:TYPE COLUMN = 11:C:WELD_TYPE COLUMN = 11:C:NOMINAL_DIAMETER COLUMN = 25:C:WPS COLUMN = 50:W:left(WALL_THICKNESS) + " - " + right(WALL_THICKNESS) SORT = WELDID:N END It looks like this I have a Shop Weld Report in progress and it looks like this so far: #----------------------------------------------------------------------------- # A sample SHOP weld report #----------------------------------------------------------------------------- REPORT = SHOPWELD # this to include only SHOP welds INCLUDE = IE_FIELD=0 EXCLUDE = IE_TYPE=CT_PIPE EXCLUDE = IE_TYPE=CT_FLANGE EXCLUDE = IE_TYPE=CT_ELBOW COLUMN = 11:C:"S" + WELDID COLUMN = 11:C:WELD_TYPE COLUMN = 25:C:WPS COLUMN = 11:C:NOMINAL_DIAMETER COLUMN = 30:W:left(WALL_THICKNESS) + " - " + right(WALL_THICKNESS) SORT = WELDID:N TEXT = @---------------------------------------------------------- TEXT = @ SHOP WELD SCHEDULE TEXT = @---------------------------------------------------------- Write = END The issue is with the EXCLUDE = IE_TYPE properties. Is there a IE_TYPE I can Exclude without having to exclude every other piping component in the drawing?
↧