R
Rob
How can I setup a query to pull year to date budget info? I have a table (tbl
budget) that contains budget information by project. I have "month" as a
field name so each project is enter 12 times in the table (1 for each month).
I will need to obtain year to date budget info throughout the year next year.
I am not sure how to specify the query to pull a certain time line as the
year progresses.
SELECT [tbl budget].Group, [tbl budget].Subgroup, [tbl budget].[ID Pook],
[tbl budget].[Project Name], Sum([tbl budget].[Budget Amount]) AS
[SumOfBudget Amount]
FROM [tbl budget] INNER JOIN [tbl period] ON [tbl budget].Month = [tbl
period].Month
GROUP BY [tbl budget].Group, [tbl budget].Subgroup, [tbl budget].[ID Pook],
[tbl budget].[Project Name];
budget) that contains budget information by project. I have "month" as a
field name so each project is enter 12 times in the table (1 for each month).
I will need to obtain year to date budget info throughout the year next year.
I am not sure how to specify the query to pull a certain time line as the
year progresses.
SELECT [tbl budget].Group, [tbl budget].Subgroup, [tbl budget].[ID Pook],
[tbl budget].[Project Name], Sum([tbl budget].[Budget Amount]) AS
[SumOfBudget Amount]
FROM [tbl budget] INNER JOIN [tbl period] ON [tbl budget].Month = [tbl
period].Month
GROUP BY [tbl budget].Group, [tbl budget].Subgroup, [tbl budget].[ID Pook],
[tbl budget].[Project Name];