Forum Discussion
BlastS
7 years agoHelper I
Calculate/SumAll Duration in specific intervals
I have been working with a litle of dax function but still i am strunglig to get this exact thing which is: I have as columns: Index TIME ColumnF Duration ColumnX 1 30/07/2012 00:0...
- Anonymous7 years ago
See if this helps:
Measure = CALCULATE( SUM(Table1[Duration]), Table1[ColumnX]=.20 )
Anonymous
7 years agoNot applicable
See if this helps:
Measure =
CALCULATE(
SUM(Table1[Duration]),
Table1[ColumnX]=.20
)BlastS
7 years agoHelper I
Hi, Anonymous
That helps a litle but its not that i am exactly looking for. After that how you would convert to datetime?
- Anonymous7 years agoNot applicable
Sorry, dont follow. Could you possibly put what your expected output would be?
- BlastS7 years agoHelper I
HI, Anonymous
Like each 10 of duration its 10 min so the output after sum all should be like 0 00:50:00 (means 0 days 0 hours 50 min 0 sec)
- v-yulgu-msft7 years agoMicrosoft Employee
Hi BlastS,
Here is a blog for your reference, please refer to it to convert minutes to duration.
Best regards,
Yuliana Gu