How to generate a list of all dates between several years?
This is needed to calculate depreciation for each day or month or year by filtering such a table by date and applying daily (monthly) depreciation.
How to generate a list of all dates between several years?
This is needed to calculate depreciation for each day or month or year by filtering such a table by date and applying daily (monthly) depreciation.
I've created a function to generate such a table. It takes start and end years as parameters.
You can place it either as a separate query and call later, or fully include in your query.
Update.
Although, as MarcelBeug advises, it is easier to use List.Dates (which I've missed :) ), here are some examples of using
type table
that might be useful.