Forum Discussion

mmh9119's avatar
mmh9119
Frequent Visitor
3 years ago
Solved

DAX - Exclude a specific filter in a specific column, but keep all others

Hi all,   I have the following DAX measure:     test = CALCULATE( COUNTROWS(ma_out_full), FILTER(ALL(ma_out_full), ma_out_full[Update Timestamp] = "As of Jul 31, 2023") ALLEXCEPT ( ...
  • eliasayyy's avatar
    eliasayyy
    3 years ago

    oh my bad instead of , use && 

    test = CALCULATE(
        COUNTROWS(ma_out_full),
        FILTER(ALL(ma_out_full), ma_out_full[Update Timestamp] = "As of Jul 31, 2023" && ma_out_full[Transfer Status] <> "Case Closed")
        )