Oct 19, 2006 #1 rafal444 Programmer Aug 11, 2006 74 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 Sep 23, 2003 11,174 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 Aug 11, 2006 74 US Value is a calculated field on the report. =NullToZero([my query field]) Upvote 0 Downvote
Oct 22, 2006 #4 TheAceMan1 Programmer Sep 23, 2003 11,174 US rafal444 . . . Can't say unless you post the function [blue]NullToZero[/blue]! See Ya! . . . . . . Upvote 0 Downvote
Oct 22, 2006 #5 JoeAtWork Programmer Jul 31, 2005 2,285 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)