Aug 17, 2001 #1 SeanB Programmer Jul 19, 2001 70 US I have a proc that I have a sub query summing a column. How in the proc can I set the value to zero if it is Null.
I have a proc that I have a sub query summing a column. How in the proc can I set the value to zero if it is Null.
Aug 17, 2001 1 #2 jjonesal Programmer May 10, 2001 277 US ISNULL(field,0) returns field if field is not null, returns 0 if field is null J. Jones jjones@cybrtyme.com Upvote 0 Downvote
ISNULL(field,0) returns field if field is not null, returns 0 if field is null J. Jones jjones@cybrtyme.com