Q
quinto via AccessMonster.com
If "NewStart" is null then "StartTime"
I searched but I did see anything that I could use.
Thanks
Quinto
I searched but I did see anything that I could use.
Thanks
Quinto
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
Or
Nz([NewStart], [StartTime])
[quoted text clipped - 8 lines]I'm not sure if I understand properly, but have you looked into the iif().