I have an Access 2010 database that our staff use to keep track of appointments and activities. Some events occur weekly, and I would like the staff to be able to create those entries by selecting the day of the week and the start and end dates of the event. I am relatively new to VBA coding. I have found some examples that appear to replicate the entry daily across a series of dates, but I do not know how to tell Access to put in the entry for, say, every Wednesday, between those dates.
The staff are entering the information in a form bound to the main table. xtxBeginningDat e and txtEndingDate are the fields for the dates. cmbWeekday allows users to select the day of the week. The table is tblEventsRecord s and the form is fmEventsRecords . I have a CalendarDates table.
The staff are entering the information in a form bound to the main table. xtxBeginningDat e and txtEndingDate are the fields for the dates. cmbWeekday allows users to select the day of the week. The table is tblEventsRecord s and the form is fmEventsRecords . I have a CalendarDates table.
Comment