Jun 1, 2003 #1 steve728 Programmer Mar 16, 2003 536 US I'm used to using the following: If rs.fields("Memo".value <> "" Then Process code ... End If Thank you Cyber Buddies! Steve
I'm used to using the following: If rs.fields("Memo".value <> "" Then Process code ... End If Thank you Cyber Buddies! Steve
Jun 1, 2003 1 #2 WB786 MIS Mar 14, 2002 610 Try this: If Len(Nz(rs.fields, ""= 0 Then Process code ... End If WB Upvote 0 Downvote
Jun 2, 2003 #3 jfischer Programmer May 24, 2001 343 US To catch both Null and Zero-length: Code: If rs.Fields("Memo").Value & "" = "" Then 'Process code... End If Upvote 0 Downvote
To catch both Null and Zero-length: Code: If rs.Fields("Memo").Value & "" = "" Then 'Process code... End If
Jun 2, 2003 Thread starter #4 steve728 Programmer Mar 16, 2003 536 US Thank you! Thank you! These suggestions did the trick! Steve Upvote 0 Downvote
Jun 2, 2003 #5 jfischer Programmer May 24, 2001 343 US Sorry, I didn't catch your "<>". My example should be: Code: If rs.Fields("Memo").Value & "" <> "" Then 'Process code... End If Upvote 0 Downvote
Sorry, I didn't catch your "<>". My example should be: Code: If rs.Fields("Memo").Value & "" <> "" Then 'Process code... End If