Forum Discussion

ruxandraalina's avatar
4 years ago
Solved

Exclude value from rows, but include in total

Hello! I've been struggling with a Power BI issue and hopefully someone could help here 🙂    I have some SLAs that are calculated per group category (highest hierarchy level), region, team and op...
  • PVO3's avatar
    4 years ago

    HI,

     

    Try this

    IF(
        SELECTEDVALUE('Table'[Operator group]) IN {"A","B"}, BLANK(),
        [Measure])
    )