Forum Discussion
ldwf
Helper V
2 years agoDAX Formula
Need help with a DAX formula. I have a result set that has the five columns as shown in the image. The number of records is much larger, and there are multiple dates and statuses. I need to create...
- 2 years ago
Hi,
Try this
Latest due date = calculate(max(Data[Due date]),filter(Data,Data[Date]=earlier(Data[Date])&&Data[Status]=earlier(Data[status])&&Data[Volume]>0))
ldwf
Helper V
2 years agoI rephrased the question. The DAX formula needs a filter as well
Ashish_Mathur
Super User
2 years agoHi,
Try this
Latest due date = calculate(max(Data[Due date]),filter(Data,Data[Date]=earlier(Data[Date])&&Data[Status]=earlier(Data[status])&&Data[Volume]>0))
- ldwf2 years ago
Helper V
That worked!...thanks