Hi I have a database that I would like to generate age range.
I would like to include two text boxes like:
txtBeginningAge
txtEndingAge
With these text boxes, after updating them (entering the age range), I would like to include a button that will generate a report base on the age range.
I can run a query that pops up a dialogue box requesting the entry of beginning and ending age, but I want it to be on my report menu.
I have this that generates some of my reports as needed:
Complements to my good friends here.
Can anyone help?
Thanks
I would like to include two text boxes like:
txtBeginningAge
txtEndingAge
With these text boxes, after updating them (entering the age range), I would like to include a button that will generate a report base on the age range.
I can run a query that pops up a dialogue box requesting the entry of beginning and ending age, but I want it to be on my report menu.
I have this that generates some of my reports as needed:
Code:
DoCmd.OpenReport "rptInServiceTeachersByIndividualCountyAndSchools", acViewReport, , "strCounty = '" & Me.cboCounty & "'"
Can anyone help?
Thanks
Comment