Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
PBI5851
Helper V
Helper V

DateDiff with Filter based on specific value

Hello,

 I am trying to capture the number of accounts and how long have they been in a specific status. Since we cant use a filter within datediff , not sure how to achieve this. 

AccountIDStatusSubstatusStatusDateCurrentFlag
A1001OpenFile5/1/20200
A1001OpenProgress5/2/20200
A1001CapProgress5/10/20200
A1001ShipCarrier8/1/20200
A1001ShipDelivered8/5/20201
A1004OpenFile7/8/20200
A1004ShipCarrier9/1/20200
A1004ShipDelivered9/5/20201
A1007OpenFile8/15/20200
A1007ShipCarrier9/1/20200
A1007ShipDelivered9/3/20200
A1007ShipReturned9/5/20200
A1007ShipCancelled9/10/20201

 

Primary criteria is for currentflag = 1 and Status = Ship and Substatus = Delivered, how many days has it been since today. 

 

1) Need to display the AccountID and the days it has been since above criteria (this is on the detail page)

2) A Count of Accounts where the days since above criteria has been more than 10 days (this will be in a summary page)

 

Any recommendations on how to achieve this please. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hello @PBI5851

1)

DaysSinceDelivered = 
var _DelDate = CALCULATE(max(Table2[StatusDate]), FILTER(ALLEXCEPT(Table2,Table2[AccountID]),Table2[CurrentFlag] = "1" && Table2[Status] = "Ship" && Table2[Substatus] = "Delivered"))
Return DATEDIFF(_DelDate,TODAY(),DAY)

pranit828_0-1599969070949.png

2)

Delivered Morethan10Days = 
CALCULATE(COUNTROWS(Table2), FILTER(ALLEXCEPT(Table2,Table2[AccountID]),Table2[CurrentFlag] = "1" && Table2[Status] = "Ship" && Table2[Substatus] = "Delivered" && DATEDIFF(Table2[StatusDate],TODAY(),DAY)>10))

pranit828_0-1599970141709.png

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hello @PBI5851

1)

DaysSinceDelivered = 
var _DelDate = CALCULATE(max(Table2[StatusDate]), FILTER(ALLEXCEPT(Table2,Table2[AccountID]),Table2[CurrentFlag] = "1" && Table2[Status] = "Ship" && Table2[Substatus] = "Delivered"))
Return DATEDIFF(_DelDate,TODAY(),DAY)

pranit828_0-1599969070949.png

2)

Delivered Morethan10Days = 
CALCULATE(COUNTROWS(Table2), FILTER(ALLEXCEPT(Table2,Table2[AccountID]),Table2[CurrentFlag] = "1" && Table2[Status] = "Ship" && Table2[Substatus] = "Delivered" && DATEDIFF(Table2[StatusDate],TODAY(),DAY)>10))

pranit828_0-1599970141709.png

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.