Forum Discussion

olimilo's avatar
olimilo
Post Prodigy
8 years ago
Solved

Removing rows based on 1++ criteria

I'm doing this manually on the Excel source file, but I think it could be done natively on Power BI. I looked at the example here but it seems to just select a subset of the data based on the conditi...
  • MattAllington's avatar
    8 years ago

    Just add a custom column as follows (case sensitive)

     

    = if [Client] = “Client A” and [Type] = “Type 3” then “remove” else null

     

    then put a filter on the new colum to remove the results.