sort out one months

R

Rowl

I have a database of projects. I need to see just projects completed in
specific month how can I make query etc.
 
D

Duane Hookom

You need to be able to ask more complete questions. We don't know if your
table or tables have any date fields. Also, we have no idea how you
determine if a project is "completed".

Apparently you think we can either see your application or read your mind.
 
J

John Vinson

I have a database of projects. I need to see just projects completed in
specific month how can I make query etc.

There are several ways; probably the simplest to implement would be to
create a Query based on the table, with a criterion on the completion
date of
= DateSerial([Enter Year:], [Enter month number:], 1) AND < DateSerial([Enter Year:], [Enter month number:] + 1, 1)


John W. Vinson[MVP]
 

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

Top