Forum Discussion

Jtbonner1986's avatar
Jtbonner1986
Helper I
1 year ago
Solved

Count Non Matching Rows

Hi,    Sorry for the basic question here: I have 2 tables, a pricing table and a material table (joined by material ID). I want to understand where i have a record in my material table but do not ...
  • danextian's avatar
    1 year ago

    Hi Jtbonner1986 

     

    Create a one-to-many single direciton relationship from Price to Material

    Create this measure:

    count = 
    CALCULATE (
        COUNTROWS ( Material ),
        KEEPFILTERS ( ISBLANK ( 'Price'[Material] ) )
    )