Show Nulls in a table

  • Thread starter Thread starter sweetlisa1217 via AccessMonster.com
  • Start date Start date
S

sweetlisa1217 via AccessMonster.com

Is there a way to have nulls appear in a table, for example like in SQL the
field value shows as <NULL> ?
 
Not really. You could do it in your table, query, or report by using the Nz
function...


Nz([Somefieldname],"<NULL>")
 
Since you should always view your data in forms and reports, you can set the
format property to display Nulls as anything you want.

--
Duane Hookom
MS Access MVP
--

Rick B said:
Not really. You could do it in your table, query, or report by using the
Nz function...


Nz([Somefieldname],"<NULL>")
 
Back
Top