Hi bal,
If you ever want to have 'either this or that' as a list of dockets, you can use the OR function to separate the statements:
OR(
Trim({Docket})="70-97",
Trim({Docket})="30-01"
)
This can get large if you want a list of 10 specific dockets, so alternately you can use the FINDANY function:
FINDANY( Trim({Docket}),"70-97","30-01",...) = 1
FINDANY returns a value of 1 if the first value equals any of the subsequently listed values, others the value is 0.
_________________________
Regards,
Softrak Tech Support