Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Calculating Monthly Percentage

I am working on a project to track the utilization of steel at our facility. What I am looking to do is calculate the monthly utilization percentage using the following equation: Total Used Steel (m^...
  • TrentS's avatar
    TrentS
    6 years ago

    Need to use the SUM function in the measure. Essentially putting the calculation in the background as opposed to a setting on the card visual as you encountered.

     

    %_Used = SUM(Sheet1[Total_used]) / SUM(Sheet1[Total_Steel])
     
    Once I had created those two columns, I created that as a measure (modeled as a %) for the card value.
    Then you should be able to use visual level filters to set your cards to the appropriate Month.
     
    I understand using that Steel # as a filter. That explains it, thank you. I was thinking of it more as a "Job" or Asset number instead of a classification.