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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress or Exclude end of trip IDs

Status
Not open for further replies.

capronton

MIS
Jun 28, 2013
159
0
0
US
How can suppress or exclude all end of trip IDs from record selection?

I put the formula below in the suppress detail section but is not working. Can you assist?

If {trip.end_tpid} then 1
else 0
 
What kind of field is {trip.end_tpid}? Also have you selected 'Default Values for Nulls' in the formula editor? I would think you would want to use the Select Expert.
 
I would prefer to filter records rather than suppress records. How would I put the following syntax in the select expert?

If trip.end_tpid = timepoint.tpid then filter row.

For some reason I'm drawing a brainlock - any suggestions would be appreciated.
 
H,

Try this:
(
If trip.end_tpid = timepoint.tpid then
false //filter row
else
true
)

Dana
 
Thanks Dana. I was able to used the criteria below to filter the records.

{trip_timepoint.tp_id} <> {trip.end_tpid}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top