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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
mmar
Regular Visitor

Create a filter for multiple data sources

Hi,

I need to create a report as in the attached image. The upper part (ingredients) works with data from a Database source.

The part below with a line chart should work with data from an Historian.

I would create a Stored Procedure in the DB to retrieve data from the Historian.

In both cases I should filter the data using the order-number. How can I filter both sources using only one filter?

Can I use the order-number chosen by the filter tab in Power BI as input for a stored procedure parameter?

Screenshot (305)_LI.jpg

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

Hi,

 

According to your description, i create a sample to test:

80.PNG81.PNG

In order to filter both two tables by one filter, please try to create a calculated table first:

Slicer Table = CROSSJOIN(DISTINCT('Table 1'[OrderID]),DISTINCT('Table 2'[Number]))

Then add an column to this table:

Slicer Column = 'Slicer Table'[OrderID]&"-"&'Slicer Table'[Number]

Create one-to-many relationships among them:

82.PNG

When you select one value in this [Slicer Column], it will filter both two tables:

83.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto Zhi

View solution in original post

1 REPLY 1
v-gizhi-msft
Community Support
Community Support

Hi,

 

According to your description, i create a sample to test:

80.PNG81.PNG

In order to filter both two tables by one filter, please try to create a calculated table first:

Slicer Table = CROSSJOIN(DISTINCT('Table 1'[OrderID]),DISTINCT('Table 2'[Number]))

Then add an column to this table:

Slicer Column = 'Slicer Table'[OrderID]&"-"&'Slicer Table'[Number]

Create one-to-many relationships among them:

82.PNG

When you select one value in this [Slicer Column], it will filter both two tables:

83.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto Zhi

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors