Forum Discussion
StevenHiatt
4 years agoFrequent Visitor
Find Max Date Prior to Today
I have order data with dates both in the past and in the future. It is connected to a date calendar table. I would like to find the most recent date prior to today. For example, if today was Apri...
- 4 years ago
Try:
Max Date =CALCULATE( MAX('Order Data'[Order Date]), FILTER(ALL(Order Data), Order Data[Date]<= TODAY()))
PaulDBrown
Community Champion
4 years agoTry:
Max Date =
CALCULATE( MAX('Order Data'[Order Date]), FILTER(ALL(Order Data), Order Data[Date]<= TODAY()))