Oct 19, 2006 #1 rafal444 Programmer Joined Aug 11, 2006 Messages 74 Location US I am getting this error. How to test for it? I have tried for IsNUll(Value), is error(value) isempty(Value) All returns False! How to check for this error???
I am getting this error. How to test for it? I have tried for IsNUll(Value), is error(value) isempty(Value) All returns False! How to check for this error???
Oct 19, 2006 #2 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US How are ya rafal444 . . . Whats the source of [purple]Value[/purple]? Perhaps [blue]Me!TextboxName[/blue].Value [blue]Your Thoughts? . . .[/blue] See Ya! . . . . . . Upvote 0 Downvote
How are ya rafal444 . . . Whats the source of [purple]Value[/purple]? Perhaps [blue]Me!TextboxName[/blue].Value [blue]Your Thoughts? . . .[/blue] See Ya! . . . . . .
Oct 22, 2006 Thread starter #3 rafal444 Programmer Joined Aug 11, 2006 Messages 74 Location US Value is a calculated field on the report. =NullToZero([my query field]) Upvote 0 Downvote
Oct 22, 2006 #4 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US rafal444 . . . Can't say unless you post the function [blue]NullToZero[/blue]! See Ya! . . . . . . Upvote 0 Downvote
Oct 22, 2006 #5 JoeAtWork Programmer Joined Jul 31, 2005 Messages 2,285 Location CA The name of the function suggests to me that the following can be used instead: Code: =nz([my query field],0) Upvote 0 Downvote
The name of the function suggests to me that the following can be used instead: Code: =nz([my query field],0)