I have a set of data for monthly KPI's. The user may enter the same KPI with a different dollar value multiple times. Once I identify the last entry for each combo of calendar month, fiscal year and metric, I will use that data on a report to show the user the value that we'll include later down the road on another report. Even if it's December 2024, the user may enter a new value for July 2024.
Here's a sample of the data - 'metric' names changed for security reasons:
I have the following calculation in the 'Last Entry X' column but as you can see, I'm getting an error:
=MAX(COLLECT([Created On]:[Created On], [Month Number]:[Month Number], [Month Number], [Fiscal Year]:[Fiscal Year], [Fiscal Year], Metric:Metric, Metric@row))
I'm not sure what I'm doing wrong. I want this column to return the maximum created on date for the combo of calendar month, fiscal year and metric. The 'Last Entry X' column is defined as a date column. Any ideas?