Forum Discussion

equevedo84's avatar
equevedo84
Frequent Visitor
2 years ago
Solved

Recreating COUNTIF formula into Measure in Power BI

Hey everyone,

 

I'm transitioning an Excel report into Power BI and want to adapt a COUNTIFS formula in the Excel report into a Power BI measure.  The current COUNTIFS formula reads as follows: =COUNTIFS($K:$K,"Non-Compliant",$J:$J,$J2,$H:$H,$H2,$A:$A,$A2).  K column is a Status column which has only two values Compliant or Non-Compliant.  Column J is a Measure column containing text of different Measure descriptions, column H contains doctor names, and column A contains insurance names.  The formula is obviously counting the occurrence of the Status Compliant or Non-Compliant in the given three way combo of Measure/Doctor/Insurance name, so one doctor that is paired with a given measure description and insurance that is Non-Compliant is counted occurrence of 11x.  Any help is greatly appreciated.

 

Thanks

  • Substitute your own column/table names. This is a calculated column.

    ColumnNonCompliant = 
    var _Payer = TableT[Column1]
    var _Prov =  TableT[Column2]
    var _Meas = TableT[Column3]
    var _stat = TableT[Status]
    
    RETURN
    COUNTROWS(FILTER(TableT, TableT[Column1] = _Payer && TableT[Column2] = _Prov && TableT[Column3] = _Meas && TableT[Status] = "Compliant"))

     Post your data next time please, not a picture

7 Replies