I created a calculated table based on start and end dates to check which manager is responsible for a product per date.
The financial department uses a four week period to report. So 13 periods per year.
(not usable in a date table?)
Product number 8098 gets a different manager on the 23rd of januari this year.
So at the start manager C5104 is responsible and at the end of period one (202301) C5107 is responsible.
To get one responsible manager per period I'd like to filter the table in such a fashion that I get the numbers from the last date in a period. After filtering I don't need the [date] field anymore.
I hope I'm just missing something basic like the 'ELLEXCEPT' But I'm lost...
One row too many. I'd like to lose the row: 8098, C5104, 202301. To keep only rows showing the manager per product at the end of a period.


Steps to follow:
You need to add a column on your original table that will handle the null values in the End date manager column by adding a custom column named EndDate Function Parameter; the formula is:
You need to create two referenced tables from your original table. Call them ProductManagerEndDate and ProductManagerStartEndDate
Disable load for ProductManagerEndDate and keep these columns only: Product, Manager, and EndDate Function Parameter, as shown in the image below.
For ProductManagerStartEndDate, keep these columns only: Product, Manager, StartDate, EndDate, and EndDate Function Parameter, as shown in the image below.
Now, you need to go to the ProductManagerStartEndDate table, and from Add Column tab, you need to choose Invoke Custom Function and populate the data for the popped-out window, as shown in the image below.
Filter the column {Count the number of Projects} or whatever name you gave in step six to be less than 2.
Finally, you keep the Product, Manager, StartDate, and EndDate columns in the ProductManagerStartEndDate table then you can create your original calculation for your needed report.
I hope I helped in a way; if so, please mark this as an answer and vote for it :)