Forum Discussion
nooneliveforeva
9 years agoFrequent Visitor
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...
- 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
v-jiascu-msft
9 years agoMicrosoft Employee
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
nooneliveforeva
9 years agoFrequent Visitor
Very nice thank you all for your help