Query

  • Thread starter Thread starter Dennis
  • Start date Start date
D

Dennis

In a query, I am extracting several codes that are in one
field through three expressions that puts a value for each
in its own query field. "AM","PM" and "HS".

Example of the expressions:

SIGAM: IIf(Right(Space(3) & [SIG1],3)="QAM","AM")

SIGPM: IIf(Right(Space(3) & [SIG1],3)="QPM","PM")

SIGHS: IIf(Right(Space(3) & [SIG1],3)="QHS","HS")

The problem I am having is I only want those records in
the result of the three expressions and not the rest. when
I try to limit the query I either get records that only
have all three values or all the records including the
records I do not want. How can I get only the records that
have the desired value in one, two or three of these three
fields and none of the other values?

Thanks,

Dennis
 
try
SIGAM: IIf(Right(Space(3) & [SIG1],3)="QAM","AM")

SIGAM: IIf(Right(Space(3) & [SIG1],3)="QAM","AM",[SIG1])
 
Back
Top