Forum Discussion
J918
2 years agoFrequent Visitor
Datediff slicer not correct
I have this DAX code to show how many minutes a process ran: Process Time Minutes = DATEDIFF(META[PROCESS_START_TIME], META[PROCESS_END_TIME], MINUTE) I then put a slicer: However, it's ...
- 2 years ago
I figured it out. Changed my DAX to:
Process Time Minutes = DATEDIFF(META[PROCESS_START_TIME], META[PROCESS_END_TIME], SECOND) / 60
J918
2 years agoFrequent Visitor
I figured it out. Changed my DAX to:
Process Time Minutes = DATEDIFF(META[PROCESS_START_TIME], META[PROCESS_END_TIME], SECOND) / 60