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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Cardi0z
Helper I
Helper I

Filter Other Data Source

I have two data source. I want to slicer on Data Source 1, can filter whole data on Data source 2.

 

Cardi0z_0-1702278576017.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Cardi0z ,

You might also consider creating several MEASURES (depending on the number of sliced fields in Source1) and adding them to the filters in Source 2 Visuals.
example:
create a new measure

date fitler = 
VAR _date = ALLSELECTED('Table1'[Date])
VAR _filter = IF(SELECTEDVALUE('Table2'[Date]) IN _date,1)
RETURN
_filter

and apply it to the visual's filter.

vcgaomsft_0-1702879486065.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

View solution in original post

4 REPLIES 4
Vallirajap
Resolver III
Resolver III

Hii @Cardi0z 

Try this,

 

Go to model view,

Make a relationship between the Data Source 1 and Data Source 2 usnig date column or other columns

 

Did I answer your question?

Mark my post as a solution, this will help others....!

Hit the Kudo also,

Thank you

 

Idrissshatila
Super User
Super User

HEllo @Cardi0z ,

 

I would suggest you work your data model as a star schema data model and you'll get what you want.

https://learn.microsoft.com/en-us/power-bi/guidance/star-schema

 



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




Cardi0z_0-1702280335733.png


this is my scenario

Anonymous
Not applicable

Hi @Cardi0z ,

You might also consider creating several MEASURES (depending on the number of sliced fields in Source1) and adding them to the filters in Source 2 Visuals.
example:
create a new measure

date fitler = 
VAR _date = ALLSELECTED('Table1'[Date])
VAR _filter = IF(SELECTEDVALUE('Table2'[Date]) IN _date,1)
RETURN
_filter

and apply it to the visual's filter.

vcgaomsft_0-1702879486065.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors