Is this possible

R

Rocky Frazier

Hi, I have a mdb with a field on a form called "Month"...it contains a text
value of January...or February.....or March...ect....

I want a query to ask what ....and the answer should be ONLY the inputted
info...for instance in the Criteria field of Month <which contains only the
Month's name...ie ..January...ect....

I want to run a query that only brings up all the records with January as
the [Month]= "January"....how do I do this?

Thanks,
Rocky
 
D

Dorian

You can run a query against a table, not a form.
If the months are in a table then you can do it by
creating a query "SELECT * FROM MonthsTable WHERE Month =
[Forms]![Formname]![MonthControlname]"
Or maybe I did not understand your question.

-----Original Message-----
Hi, I have a mdb with a field on a form
called "Month"...it contains a text
value of January...or February.....or March...ect....

I want a query to ask what ....and the answer should be ONLY the inputted
info...for instance in the Criteria field of Month <which contains only the
Month's name...ie ..January...ect....

I want to run a query that only brings up all the records with January as
the [Month]= "January"....how do I do this?

Thanks,
Rocky

--
James R. Frazier
(e-mail address removed)
http://remotecare.vstoreoffice.com
"Never Bite off More than your Donkey can Carry"


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Mapping strings to integers 5
Excel Excel 2010 2
Calculate Time 2
Calculate difference in rows in a query 1
Year end Data from multiple worksheets 1
Month Query 10
Copying In A Continuous Form 2
calculation in Report 1

Top