Data Entry on form

M

Mike B

My table looks like this:

Timepoint Date On OFF

I have 15 Time Points, how can i show this on 1 page in a form for data
entry. Please be Basic my brain is fried.
 
L

Larry Daugherty

At the simplest, use a datasheet view in your form.

There may be more elegant solutions to your issues but you haven't
given us much to go on.

HTH
 
J

John Vinson

My table looks like this:

Timepoint Date On OFF

I have 15 Time Points, how can i show this on 1 page in a form for data
entry. Please be Basic my brain is fried.

Use a Continuous Form, or a Datasheet Form. Open the form in design
view and change its Default View property from "Single Form".

Note that Date is a reserved word and a BAD choice of fieldname; and
that if you have separate fields named On and Off, you may need to
reconsider your normalization. As shown, there's nothing to prevent a
record from having On and Off conflicting! What's the datatype of this
field? If it's a date/time field, you might consider using the fact
that Date/Time fields store both the date and the time, and using
TimeOn and TimeOff; this would make calculations simpler and prevent
any problems with time points spanning midnight.


John W. Vinson[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