Forum Discussion
Anonymous
2 years agoNot applicable
Calculating a time difference based on two times spread over two tables
Hi there, I'm fairly new to PowerBI, so it might be a dumb question. I have the following tables: Sentinel-incidents contain security incidents from our system. A single incident might ...
- 2 years ago
Anonymous , Try a measure like
AverageX('Sentinel-incidents', datediff(min('Sentinel-task'[CreatedTimeutc]), max('Sentinel-comment'[CreatedTimeutc]), MINUTE))
amitchandak
Super User
2 years agoAnonymous , Try a measure like
AverageX('Sentinel-incidents', datediff(min('Sentinel-task'[CreatedTimeutc]), max('Sentinel-comment'[CreatedTimeutc]), MINUTE))
- Anonymous2 years agoNot applicable
Hi amitchandak,
Awesome! That's exactly what I'm looking for, thanks for the help!