|
-
Nov 1st, 1999, 11:00 PM
#1
Thread Starter
Addicted Member
To get round the "invalid use of NULL" you can use var = "" & rs!field_name, but how do I do the equivilant with numbers? I have tried:
If rs!field_name <> Null Then
but the code never enters the "if" satement.
I don't really want to set the data to 0 either.
Thanks
Geoff 
------------------
-
Nov 1st, 1999, 11:12 PM
#2
New Member
Try with:
If Not IsNull(rs!field_name) Then ...
Maxi
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|