May 20, 2004 #1 PatelRam Programmer Aug 20, 2003 87 US Hi, what is Null function in Ms-access ? Oracle : select nvl(comm,0) from employee; Ms-Access : ?? Thanks, Ram
Hi, what is Null function in Ms-access ? Oracle : select nvl(comm,0) from employee; Ms-Access : ?? Thanks, Ram
May 20, 2004 #2 lupins46 MIS Feb 19, 2004 2,509 GB I assume you are referring to NZ(). NZ(myfield,0) will return 0 if myfield is null. General form is Nz(myfield,value) but default vlues are 0 for numbers and "" for strings. Upvote 0 Downvote
I assume you are referring to NZ(). NZ(myfield,0) will return 0 if myfield is null. General form is Nz(myfield,value) but default vlues are 0 for numbers and "" for strings.
May 20, 2004 Thread starter #3 PatelRam Programmer Aug 20, 2003 87 US I tried but it is giving undefined function error Basically I am using following query in crystal Designer. I am using access database in backend. My sql query is select NZ(division,"Unassigned") from table_name but it is giving me error. Am I doing some thing wrong here ??? Upvote 0 Downvote
I tried but it is giving undefined function error Basically I am using following query in crystal Designer. I am using access database in backend. My sql query is select NZ(division,"Unassigned") from table_name but it is giving me error. Am I doing some thing wrong here ???
May 20, 2004 #4 nabiS2K Programmer May 22, 2002 195 US Nz is for use in access itself. It is possible that the DB engine for crystal will work with ISNULL([FieldValue], [ValueIfNull]) instead Upvote 0 Downvote
Nz is for use in access itself. It is possible that the DB engine for crystal will work with ISNULL([FieldValue], [ValueIfNull]) instead