I'm trying to create a measure to calculate the minimum of a set of values but only for values between two dates. The start and end date are measures. On in my table of data, and one in another table.
Can anyone help me understand how to do this?
Power Query:
=CALCULATE(min(DailyTable[Gross+Ralston]),filter(DailyTable,DailyTable[Date]>=MaxPct[CriticalStartDate] && DailyTable[Date]<=[CriticalEndDate]))
Can anyone help me understand how to do this?