I want to create a combo box that contains a list of dates
example
5/20/2006
6/3/2006
6/17/2006
7/1/2006
7/15/2006
7/29/2006
8/12/2006
8/26/2006
9/9/2006
You will notice the dates are in 14 day spans
example:
5/20/2006 + 14 equals 6/3/2006
I know I can create a table and add the dates manually and then base the combo box on that table
The problem is that I don't want to manually create this table.
So I created a Form with
a command Button called cmdCreateTbl
and two text boxes txtStartDate, txtPayPeriods
which populate a table called tblPayPeriods
How can I create a query based on tblPayPeriods that will create the table for me?
Newbie in search of knowledge
example
5/20/2006
6/3/2006
6/17/2006
7/1/2006
7/15/2006
7/29/2006
8/12/2006
8/26/2006
9/9/2006
You will notice the dates are in 14 day spans
example:
5/20/2006 + 14 equals 6/3/2006
I know I can create a table and add the dates manually and then base the combo box on that table
The problem is that I don't want to manually create this table.
So I created a Form with
a command Button called cmdCreateTbl
and two text boxes txtStartDate, txtPayPeriods
which populate a table called tblPayPeriods
How can I create a query based on tblPayPeriods that will create the table for me?
Newbie in search of knowledge