Blank Fields

C

Connie

Not all of the fields in a record have data. I use my Access database to
show information on my webpage. When the field of a record is blank, how do
I close the blank space it leaves on my webpage?
 
S

Stefan Hoffmann

hi Connie,
Not all of the fields in a record have data. I use my Access database to
show information on my webpage. When the field of a record is blank, how do
I close the blank space it leaves on my webpage?
An Access solution:

Use a query to retrieve the data, e.g.

SELECT Nz([yourField], "<no data>") AS NzYourField
FROM yourTable

Otherwise it depends on the "how do you create your web page"... PHP,
Java, ASP.Net...


mfG
--> stefan <--
 

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