Forum Discussion

nooneliveforeva's avatar
nooneliveforeva
Frequent Visitor
9 years ago
Solved

DAX Filter not in date

Hello,  I have issu using filter. This is what i have :   Location Date PARIS 2016 PARIS 2017 LONDON 2017 MADRID 2016 NEW-YORK 2016   I want to have a table where locatio...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    9 years ago

    Hi nooneliveforeva,

     

    Would you like to try this formula in a New Table.

     

    Result =
    FILTER (
        'SourceTable',
        'SourceTable'[Year] = 2017
            && (
                NOT 'SourceTable'[City]
                    IN CALCULATETABLE (
                        VALUES ( SourceTable[City] ),
                        FILTER ( 'SourceTable', 'SourceTable'[Year] = 2016 )
                    )
            )
    )

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    Best Regards!

    Dale