I want to be able to put a combo box on my form and have it just show the Years we have done projects. Then pass that to a Subform.
here is the SQL code for the combo box
Also I just need the to be able to return records that were done in only that year.
TIA
DougP, MCP, A+
![[r2d2] [r2d2] [r2d2]](/data/assets/smilies/r2d2.gif)
I love this site and all you folks that helped me over the years!
here is the SQL code for the combo box
Code:
SELECT Projects.Date
FROM Projects
GROUP BY Projects.Date
ORDER BY Projects.Date;
TIA
DougP, MCP, A+
![[r2d2] [r2d2] [r2d2]](/data/assets/smilies/r2d2.gif)
I love this site and all you folks that helped me over the years!