Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
here is my Data input:
Date | Truck | Status |
1-Jan | 1234-TTA | Active |
2-Jan | 1234-TTA | Active |
3-Jan | 1234-TTA | Active |
4-Jan | 1234-TTA | Active |
5-Jan | 1234-TTA | Active |
6-Jan | 1234-TTA | Out of Service |
7-Jan | 1234-TTA | Active |
8-Jan | 1234-TTA | Active |
9-Jan | 1234-TTA | Out of Service |
10-Jan | 1234-TTA | Out of Service |
11-Jan | 1234-TTA | Active |
12-Jan | 1234-TTA | Out of Service |
13-Jan | 1234-TTA | Active |
14-Jan | 1234-TTA | Active |
15-Jan | 1234-TTA | Active |
16-Jan | 1234-TTA | Out of Service |
17-Jan | 1234-TTA | Out of Service |
18-Jan | 1234-TTA | Active |
19-Jan | 1234-TTA | Active |
20-Jan | 1234-TTA | Out of Service |
21-Jan | 1234-TTA | Out of Service |
22-Jan | 1234-TTA | Out of Service |
23-Jan | 1234-TTA | Out of Service |
24-Jan | 1234-TTA | Active |
25-Jan | 1234-TTA | Out of Service |
26-Jan | 1234-TTA | Out of Service |
27-Jan | 1234-TTA | Active |
28-Jan | 1234-TTA | Out of Service |
29-Jan | 1234-TTA | Active |
30-Jan | 1234-TTA | Active |
31-Jan | 1234-TTA | Out of Service |
acording the the data number of breakdowns would be 8 and number of operational days would be 17
is there a DAX formula that would easily go through a list such as this generate these numbers for me
Solved! Go to Solution.
Amazing thank you so much, only adjustment to the Formula would be subtracting 1 from the result
new column =
var _max = maxx(filter(Table, [Truck] = earlier([Truck]) && [Date] <earlier([date]) && [Status] ="Out of Service"),[Date])
return
if( [Status] ="Out of Service" && not(isblank(_max)), datediff(_max, [Date], day)-1)
@Anonymous , you can create a column like and use that for avg
new column =
var _max = maxx(filter(Table, [Truck] = earlier([Truck]) && [Date] <earlier([date]) && [Status] ="Out of Service"),[Date])
return
if( [Status] ="Out of Service" && not(isblank(_max)), datediff(_max, [Date], day))
Amazing thank you so much, only adjustment to the Formula would be subtracting 1 from the result
new column =
var _max = maxx(filter(Table, [Truck] = earlier([Truck]) && [Date] <earlier([date]) && [Status] ="Out of Service"),[Date])
return
if( [Status] ="Out of Service" && not(isblank(_max)), datediff(_max, [Date], day)-1)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |