Hey All,
I've got an issue that I've not been able to resolve over the last week of trying different things. Hoping I could get some pointers on what's the best approach to implementing a solution in MS Access
I have a simple data table tracking depreciation value and schedule for a number of items. Simplified example below:
EQUIPMENT TOTAL VALUE DEPRECIATION START DEPRECIATION END Pen $10000 01/03/2018 30/06/2018 Pencil $15000 01/06/2018 31/08/2018
I am trying to put together a query that would massage the above data into a table that tells me how much money is being depreciated on a monthly basis. Simplified output below:
March April May June July August Pen $2500 $2500 $2500 $2500 Pencil $5000 $5000 $5000
I thought a Crosstab would be perfect, but I can't get it to consider a date range as represented in my data table. I also tried building a query that would create a row for each month that each item was due for depreciation. I was then going to feed this into another query which aggregated the data. However I couldn't get this to work either.
Has anyone had experience with a similar problem and what is the best approach to achieve the desired result that I am after?
Thanks for any help.