Forum Discussion

Dougers1's avatar
Dougers1
Frequent Visitor
2 years ago
Solved

more help please with dax formula

i want my formula to look for to bits of criteria - where it checks for INT Glob i also want it to count anything that says INT - HBC

 

 

Global Unfilled = CALCULATE( COUNTROWS('Interpreting') , 'Interpreting'[Agency] = "INT - Glob", 'Interpreting'[status] = "Unfilled" )
 
Pany help is much appreciated
  • Dougers1 

     

    Global Unfilled = 
    CALCULATE
       COUNTROWS('Interpreting') , 

       'Interpreting'[Agency] IN { "INT - Glob", "INT - HBC"}, 

       'Interpreting'[status] = "Unfilled" 

    )

     

    Hope this is helpful to you.

    Nathan

2 Replies

  • WinterMist's avatar
    WinterMist
    Impactful Individual

    Dougers1 

     

    Global Unfilled = 
    CALCULATE
       COUNTROWS('Interpreting') , 

       'Interpreting'[Agency] IN { "INT - Glob", "INT - HBC"}, 

       'Interpreting'[status] = "Unfilled" 

    )

     

    Hope this is helpful to you.

    Nathan

    • Dougers1's avatar
      Dougers1
      Frequent Visitor

      is it possible that it counts aslong as the agency column has anykind of text in it