I need help with a simple expression in a query

  • Thread starter quinto via AccessMonster.com
  • Start date
Q

quinto via AccessMonster.com

If "NewStart" is null then "StartTime"
I searched but I did see anything that I could use.

Thanks

Quinto
 
K

Ken Snell \(MVP\)

Or
Nz([NewStart], [StartTime])

--

Ken Snell
<MS ACCESS MVP>
http://www.accessmvp.com/KDSnell/


Daniel Pineault said:
I'm not sure if I understand properly, but have you looked into the iif().

Maybe something like

iif(isnull([NewStart]),[StartTime],[NewStart])

--
Hope this helps,

Daniel Pineault
http://www.cardaconsultants.com/
For Access Tips and Examples: http://www.devhut.net
Please rate this post using the vote buttons if it was helpful.



quinto via AccessMonster.com said:
If "NewStart" is null then "StartTime"
I searched but I did see anything that I could use.

Thanks

Quinto
 

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

Top