Forum Discussion
kasfour
3 years agoHelper I
Calculating Uptime
Hello, I am trying to have a dashboard that calculates each service's uptime. The issue is I cannot seem to find a way to divide the downtime against the operational time without having d...
kasfour
3 years agoHelper I
This is the main dataset I have below, and then I have another table with the daily operational time. I then Merge both in a new table with the Date as a common column.
v-jingzhang
3 years agoCommunity Support
Hi kasfour
If daily operational time is always 1440 minutes, you can divide downtime by 1440 directly. For example,
Measure = divide(sum('Table'[Downtime]),1440)
If you want to calculate it for each service separately, you can add Service column to the same visual, then try measure
Measure = calculate(divide(sum('Table'[Downtime]),1440), allexcept('Table', 'Table'[Service]))
Best Regards,
Jing