Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I want to exclude my data based on two conditions.
1. Column [Name] = "Sarah"
2. Column [Date] = Less than 09/01/2021
Does anyone know how to make the filter? I have tried to add custom column, but it didn't work.
Thanks in advance
Solved! Go to Solution.
Hi, @febrina
You can create a column and use it in filter pane to filter data.
Like this:
column =
IF ( table[Name] = "Sarah" && table[Date] <= DATE ( 2021, 9, 1 ), 1, 0 )
Hi, @febrina
You can create a column and use it in filter pane to filter data.
Like this:
column =
IF ( table[Name] = "Sarah" && table[Date] <= DATE ( 2021, 9, 1 ), 1, 0 )
@febrina , a new measures
calculate(sum(table[value]), filter(Table, not( Table[Name] = "Sarah" && Table [Date] <date(2021,09,01) ) ))
Change order of month and day in date if needed
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.