Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kgilmore33
Regular Visitor

Trying to calculate runtime percentage of machine.

I'm collecting data from a machine every 5 minutes and have a column called 'runstatus' and we are writing a 1 or a 0 to that column.  We also have a time stamp along with other data for each record.  

 

Is there a simple way to calculate runtime % from just those two pieces of data (runstatus 1 or 0 and a timestamp?

 

I have a date slicer on the report.


Thanks.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@kgilmore33 - Try a Measure like this:

Run % = 
DIVIDE(
    CALCULATE(COUNTROWS('Your Table'), 'Your Table'[runstatus] = 1),
    COUNTROWS('Your Table')
)

Hope this helps,

Nathan

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@kgilmore33 - Try a Measure like this:

Run % = 
DIVIDE(
    CALCULATE(COUNTROWS('Your Table'), 'Your Table'[runstatus] = 1),
    COUNTROWS('Your Table')
)

Hope this helps,

Nathan

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.