Forum Discussion
Giavo
8 years agoHelper III
DATEDIFF between Rows and GROUP BY
Hello everybody. 2 DAX Questions about DATEDIFF. 1)I need to find the difference in minutes between the rows of "DateTime" column 2)I need to find the difference in minutes between the rows of "Dat...
- 8 years ago
here is the output i see on my end from your data
Giavo
8 years agoHelper III
Thank you very much, really great job. Would it be possible a new Column instead of a Measure ?
parry2k
8 years agoSuper User
unfortunately not in the same table, we have to create a calculated table.
- Giavo8 years agoHelper III
oh ok, it is ok then. My next step would be to SUM this minutes per each IWC Number
- parry2k8 years agoSuper User
summ of minutes = sumx(x, [Minute Diff])
add above measure, drop table visual with iwc number and above measure, you will have it.
- Menolly8 years agoFrequent Visitor
Hi,
I'll be really interested by how you create this new table from the date column and the measure.
I tried many ways but I'm not satisfied by result.
Thanks