I am trying to create a detail financial forecast based on the number of working days * daily margin for each month in a relevant date period.
I have a look up table with all months and the working days minus UK holidays and I am as far as calculating if the months in the date period apepar, HOWEVR I cannot figure out a way to calculate/include formula for PARTIAL month start/ends, OR if I add a date extension to calculate a longer period.
Current formula (taken from January as example)
=IF(AND([Start Date]@row < DATE(2025, 2, 1) - 1, [End Date]@row >= DATE(2025, 1, 1)), Margin@row * VLOOKUP("Jan 2025", {Working Days Range 1}, 2, false), "")
HELP!!