Problem Query

Lynn73

Registered User.
Local time
Today, 10:35
Joined
Jun 6, 2007
Messages
25
Help!
I want to add a statement to my access query which lists one field if another field matches the criteria

STATUS PROCCODE
Complete ABCD
Incomplete DEFG
Complete JHLM
Incomplete BDEF

I only want to show the Proccode if the Status field is Complete, if its incomplete I want it to be blank.

Can anyone help?
 
IIf(STATUS = "Complete", PROCCODE, "")
 
That works a treat.
Thanks for your help
 

Users who are viewing this thread

Back
Top Bottom