Hello,
I would like to generate a form that looks exactly like a crosstab query. Currently, I have a tblBudget that holds ProjectName, FiscalYear, and $Amount.
I'd like to have a spreadsheet type/crosstab view of a data entry form with FiscalYear as the "column headers" and ProjectName on the left as a "row name". I was able to do this with reports using crosstab queries - but I am stuck trying to create a form in this view (it wont let me update it if I create it from a crosstab query, or a handmade crosstab query).
Basically, it would look something like this:
FY15 FY16 FY17 Project A Project B Project C
A user should enter the budget amount for each fiscal year for their project horizontally:
FY15 FY16 FY17 Project A 10 20 Project B 20 30 Project C 50 30
the tblBudget currently looks like this (how its stored):
Project A FY15 10
Project A FY16 20
Project B FY16 20
Project B FY17 50
Project C FY15 50
Project C FY16 30
The current form I use makes the user enter a project, fiscal year, and amount as a separate RECORD (just like how the table looks), but the Fiscal Years are not spread out horizontally, which would make it easier because it would look like a spreadsheet. I would like the fiscal years spread out horizontally so the user doesn't have to make a separate entry for each fiscal year.
I tried to create a handmade crosstab query, then append to a table, and create a form out of that append table, but I am not quite sure if that will actually work for what I intend to do.
Hope this makes sense - any suggestions would be appreciated.
Thanks
- Warren