I am developing an Access front end for people to enter meteorological data.
The user goes into an introductory screen in which they type in the date of the assessment. They then go into the data entry screen.
What I want to do is to make a check in the data; if that day's data already exists then it should be displayed on the screen; if not, a new record is created for them to fill in.
After that, I have a couple of extra buttons saying "next day" and "previous day". When pressed, if data for next or previous day already exists, it should be displayed, otherwise new record created with appropriate data in the Date field (without user having to retype it or go back to introductory screen).
Data (date + meteorological variables) all stored in a single underlying table, date as PK.
Why am I doing it this way? This is based on an old system (not written in Access) that people like and know how to use, but it won't run on any OS later than NT. The guy who wrote that is no longer around and nobody else knows how he did it...
Not sure if this is a forms, macros, or VBA problem (or combination); any ideas welcomed!
The user goes into an introductory screen in which they type in the date of the assessment. They then go into the data entry screen.
What I want to do is to make a check in the data; if that day's data already exists then it should be displayed on the screen; if not, a new record is created for them to fill in.
After that, I have a couple of extra buttons saying "next day" and "previous day". When pressed, if data for next or previous day already exists, it should be displayed, otherwise new record created with appropriate data in the Date field (without user having to retype it or go back to introductory screen).
Data (date + meteorological variables) all stored in a single underlying table, date as PK.
Why am I doing it this way? This is based on an old system (not written in Access) that people like and know how to use, but it won't run on any OS later than NT. The guy who wrote that is no longer around and nobody else knows how he did it...
Not sure if this is a forms, macros, or VBA problem (or combination); any ideas welcomed!