Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

filter in DAX

  Hi Community I need some help....Im trying to build a DAX but I need to filter certain words which are in other column.   Any suggestion to improve my DAX:    MAL ASIGN = CALCULATE(COUNTROWS(b...
  • AkhilAshok's avatar
    AkhilAshok
    7 years ago

    For your example shown in pcture, you could do something like this:

    Measure =
    CALCULATE ( COUNTROWS ( Table ), NOT ( Table[CRANCOT2] IN { 910, 500, 502 } ) )