I have a query that I would like to run to get how much money have we paid in a period of time.
SELECT ProjectAct_tbl.StartDate, ProjectAct_tbl.CompletionDate, ProjectAct_tbl.Rate, ProjectAct_tbl.AmountReimb, ProjectAct_tbl.Quantity
FROM ProjectAct_tbl;
Example:
Start date completion date Quantity rate amount
01/01/2010 12/01/2010 12 $1000.00 $12000
Now, we are in the month of April.
I wan to be able to run the above and get the data for up the month of April since we are in April. So let us say if i want to run the data to sp[ecific month, i want to be able to get the right data.
Is there anyway to do this other than entering 12 records with start date and end date month by month.
SELECT ProjectAct_tbl.StartDate, ProjectAct_tbl.CompletionDate, ProjectAct_tbl.Rate, ProjectAct_tbl.AmountReimb, ProjectAct_tbl.Quantity
FROM ProjectAct_tbl;
Example:
Start date completion date Quantity rate amount
01/01/2010 12/01/2010 12 $1000.00 $12000
Now, we are in the month of April.
I wan to be able to run the above and get the data for up the month of April since we are in April. So let us say if i want to run the data to sp[ecific month, i want to be able to get the right data.
Is there anyway to do this other than entering 12 records with start date and end date month by month.