Forum Discussion
Anonymous
9 years agoNot applicable
datediff between first and lastdate
Hi, I need a measure to calculate the time between the first and last delivery date per Purchase order The table is such as: Receivedorderline Purchase order Receivedate 1 1 1-1...
- 9 years ago
Anonymous
hi, Use a measure
DaysDiff = DATEDIFF(Min(Table1[Receivedate]),MAX(Table1[Receivedate]),DAY)
Now Put in a visual the PO and this Measure.
Vvelarde
9 years agoCommunity Champion
Anonymous
hi, Use a measure
DaysDiff = DATEDIFF(Min(Table1[Receivedate]),MAX(Table1[Receivedate]),DAY)
Now Put in a visual the PO and this Measure.