Show Nulls in a table

  • Thread starter sweetlisa1217 via AccessMonster.com
  • 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> ?
 
R

Rick B

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


Nz([Somefieldname],"<NULL>")
 
D

Duane Hookom

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>")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top