Creating a field

G

Gary Nelson

In Access2000 frontend, SQL server backend.

I have a form with two fields - StartTime and EndTime. Once the EndTime
has been entered, this signifies that a "plate" has been completed. I have
been asked to create a field on a seperate report which will be,
"PlatesCompleted" which will be driven from the EndTime field being filled
in.

Can you offer some assistance as to how I can do this, and where is should
be written.
 
M

Michel Walsh

Hi,


EndTime Is Null


return either True, either False. So, you need to negate the expression to
know if your plates are completed, or not. If you make the test in VBA,
then you use instead:

IsNull( EndTime )




Hoping it may help,
Vanderghast, Access MVP.
 

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