Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Efficency calculation

Hello, I have data, "total time it took to create the part"(time) and "working mins" (Whole Number). Is here a way to divide one into the other. This data would then be used to provide a percentag...
  • v-cherch-msft's avatar
    v-cherch-msft
    7 years ago

    Hi Anonymous 

    Create a measure like below.Then drag the date column and the measure to a table visual.

    Measure =
    DIVIDE (
        CALCULATE ( SUM ( Table1[Time_Second] ) ),
        CALCULATE ( MAX ( Table1[Working-Second] ) )
    )
    

    Regards,