Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Measure: Aggregate By, Filter By, Group By, Simple Math

I am attempting to make a measure that calculates SUM(Num_Compliant) / SUM(Num_Asked) for a District, filtered to the current Fiscal Year (i.e. Date on or after 07/01/2018, or July 1, 2018).   With...
  • v-lili6-msft's avatar
    7 years ago

    hi, Anonymous 

    You could try this way as below:

    Is there a Fiscal Calendar table in your report, if not add a Fiscal Calendar table then create a relationship with basic data table.

    Then create measure as below:

    Total NumAsked = SUM('Table'[Num_Asked])
    
    Total NumCompliant = SUM('Table'[Num_Compliant])
    
    Value = DIVIDE([Total NumCompliant],[Total NumAsked])

    Result:

    here is pbix file, please try it.

     

    Best Regards,

    Lin