Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Filter out multiple values from a list

Hello,   I have a table that containts a list of all contacts that I have exported from our CRM (salesforce.com) that I want to cleanup. I am looking to filter the list to remove all contacts that...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Hi Anonymous ,

    As I said, you can add public domain table with domain text which you want to exclude.

    Then add a calculated column to contact table to compare current row content with public domain table list.

    Is Public = 
    COUNTROWS (
        FILTER (
            ALL ( 'Pubich Domain' ),
            SEARCH( 'Pubich Domain'[Domain], [Email], 1, -1 ) > 0
        )
    ) > 0
    

    Regards,

    Xiaoxin Sheng