Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
marcos_osorio
Helper II
Helper II

Complex Custom Filtering

Hi, i'm quite new to Power BI, i manage to make some pages with several Matrix and slicers. 

The thing is that now i want to filter on the whole page in the Slicer butreferencing another column.

 

For ex.

 

Date             |Product|Price|Type

01-04-2018  |a           | 10  |  Z

01-01-2019  |b           |11   |  X

01-03-2017  |c           |13   |  Z

01-01-2018  |a           |12   |  Z

01-05-2017  |d           |15   | X

The type Column is not displayed on the report.

I want to make a Slicer based on the Date that if i choose >=01-01-2019 it filter to show only X type.

If i choose < 01-01-2019 it shows only Z type. 

Is there a way to achieve this?

 

I hope my explanation is clear. 

 

Thank you very much!

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @marcos_osorio,

 

Please check the following steps as below.

 

1. Create a date table. Then create relationship between it and the fact table.

 

DATE = CALENDARAUTO()

2. Create a measure as below and make the table visual filtered by the measure.

 

Measure = var _maxdate = MAX('DATE'[Date])
var _mindate = MIN('DATE'[Date])
var _type = MAX(Table1[type])
return
IF(_maxdate<=DATE(2019,01,01) && _type="Z",1,IF(_mindate>=DATE(2019,01,01) && _type="X",1,0))

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @marcos_osorio,

 

Please check the following steps as below.

 

1. Create a date table. Then create relationship between it and the fact table.

 

DATE = CALENDARAUTO()

2. Create a measure as below and make the table visual filtered by the measure.

 

Measure = var _maxdate = MAX('DATE'[Date])
var _mindate = MIN('DATE'[Date])
var _type = MAX(Table1[type])
return
IF(_maxdate<=DATE(2019,01,01) && _type="Z",1,IF(_mindate>=DATE(2019,01,01) && _type="X",1,0))

Capture.PNG

 

For more details, please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Thank you very much, this is what i wanted.

 

 

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.