I'd like some help figuring out how to have a form (that I will name frmBudget) generate recurring monthly due dates. These due dates will be for a given amount of time, and set at a specified frequency. I have set up a table (tblMonthlyBills) with the following fields:
ID
AccountName
EstimatedBudgetAmount
StartDate
EndDate
Frequency
Most of the records I will be creating will have a "Monthly" frequency. However, because I have one account where the bill occurs on a "Weekly" basis I'd also like to include this option as well as options for "Quarterly" and "Annually" in a Combo Box that I will name "cboFrequency." These four types of payment due dates will be scheduled between a StartDate and an EndDate. After clicking on a button that I will name "btnSubmit" in the form I would like the information that I entered to generate a list of due dates. I am not sure if this is done through simple query, on a table, or some other method that I'm unfamiliar with. So I may need additional pointers here.
I'd like the Monthly dates to repeat on the exact day of the month as the StartDate. For example, I'd like the Mortgage to show due on the 1st of every month, and the Electric bill to show due on the 23rd of every month. I'd also like the Weekly dates to repeat on the same day of the week as the StartDate. For example, I'd like the Daycare to show due on every Friday.
I'm not new to access, but I am also not an expert. This has proven to be quite challenging. I would greatly appreciate any input. Thank you.