isnull/notnull??

spinkung

Registered User.
Local time
Today, 22:47
Joined
Dec 4, 2006
Messages
267
Mornin all,

I'm tring to write an if statement that is the oppsosite of ...
Code:
If IsNull(RS![Unit Type])

can someone tell me what the not null version of the is because i've tried

if NotNull(...) and i've tried if Not Null(...) but neither seem to work.

Yes i'm a noob. :rolleyes:

cheers,
spinkung.
 
hi,

Try.

if Not IsNull((RS![Unit Type]) then

spinkung said:
Mornin all,

I'm tring to write an if statement that is the oppsosite of ...
Code:
If IsNull(RS![Unit Type])

can someone tell me what the not null version of the is because i've tried

if NotNull(...) and i've tried if Not Null(...) but neither seem to work.

Yes i'm a noob. :rolleyes:

cheers,
spinkung.
 
thanks both, thats crakced it.

Code:
If IsNull(RS![Unit Type])=False Then


cheers,
spinkung. :D
 

Users who are viewing this thread

Back
Top Bottom