mcgettge
I understand your desire to create a simple database. but as suggested by Mr. Franklin, based on the number of entries, I would suggest that you normalize your data to avoid problems later on.
The use of combo boxes will really help speed data entry. Moreover, you can set defaults which would use your preferred driver, vechicle. The date can use the default Now() or int(Now()).
To use combo boxes that reflect back on the same table as you seem to be doing can be done.
Let's take the Driver.
I am going to assume the table is
tblDeliveries
DeliveryID - primary key, auotnumber
DriverID - numeric or text, text is more friendly, use initials
DeliveryDate - date / time, default int(now())
DeliveryTime - date / time
etc
For the combo box for the Driver...
Control source - DriverID
Rowsource - "select distinct DriverID from tblDelveries order by DriverID"
This will be different than what the combo box wizard will create. It would create "select distinctrow DeliveryID, DriverID ...". If you use the wizard, you will have to change the row source, and change the column width on the format tab from " 0";1"... " type of thing to 1". Likewise, change the column count to 1.
But it would be far better to have the combo box reference a dupporting table, say tblDrivers. Now you can provide the DriverID, name, and other contact info.
Richard