This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
Hello,
i have this data in source (Odpoledne = Afternoon, Dopoledne=morning,Konec=end)
and i need calculate total run time per day (based RecordDate)
Something like this (Morning/End-Morning/Start) + (Afternoon/End - Afternoon/Start)
Is it possible?
Thanks a lot
Jakub
Solved! Go to Solution.
Hi @Flashback87
Change the data type of 'StatisticValueText'column to time, then create a calculated column.
TotalMintes =
VAR _filter =
FILTER (
'Table',
[IDOfRecord] = EARLIER ( 'Table'[IDOfRecord] )
&& [InstrumentCode] = EARLIER ( 'Table'[InstrumentCode] )
&& [RecordDate] = EARLIER ( 'Table'[RecordDate] )
)
VAR _morning =
FILTER ( _filter, [StatisticGroupName] = "Dopoledne" )
VAR _after =
FILTER ( _filter, [StatisticGroupName] = "Odpoledne" )
RETURN
DATEDIFF (
CONVERT (
[RecordDate] & " "
& MINX ( _morning, [StatisticValueText] ),
DATETIME
),
CONVERT (
[RecordDate] & " "
& MAXX ( _morning, [StatisticValueText] ),
DATETIME
),
MINUTE
)
+ DATEDIFF (
CONVERT ( [RecordDate] & " " & MINX ( _after, [StatisticValueText] ), DATETIME ),
CONVERT ( [RecordDate] & " " & MAXX ( _after, [StatisticValueText] ), DATETIME ),
MINUTE
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Flashback87
Change the data type of 'StatisticValueText'column to time, then create a calculated column.
TotalMintes =
VAR _filter =
FILTER (
'Table',
[IDOfRecord] = EARLIER ( 'Table'[IDOfRecord] )
&& [InstrumentCode] = EARLIER ( 'Table'[InstrumentCode] )
&& [RecordDate] = EARLIER ( 'Table'[RecordDate] )
)
VAR _morning =
FILTER ( _filter, [StatisticGroupName] = "Dopoledne" )
VAR _after =
FILTER ( _filter, [StatisticGroupName] = "Odpoledne" )
RETURN
DATEDIFF (
CONVERT (
[RecordDate] & " "
& MINX ( _morning, [StatisticValueText] ),
DATETIME
),
CONVERT (
[RecordDate] & " "
& MAXX ( _morning, [StatisticValueText] ),
DATETIME
),
MINUTE
)
+ DATEDIFF (
CONVERT ( [RecordDate] & " " & MINX ( _after, [StatisticValueText] ), DATETIME ),
CONVERT ( [RecordDate] & " " & MAXX ( _after, [StatisticValueText] ), DATETIME ),
MINUTE
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 24 | |
| 21 | |
| 20 |