If field is null....???

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to use the query to perform the following:

If [fieldA] is null... then get the data from [fieldZ]

Any help would be greatly appreciated ... thanks!
 
I would like to use the query to perform the following:

If [fieldA] is null... then get the data from [fieldZ]

Any help would be greatly appreciated ... thanks!

NewColumn:IIf(IsNull([FieldA]),[FieldZ],[FieldA])
 
I would like to use the query to perform the following:

If [fieldA] is null... then get the data from [fieldZ]

NZ([FieldA], [FieldZ])

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top