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
BernardesV
Frequent Visitor

Cross-filtering multiple table visuals into one line chart

Hello everyone,

 

I have a project where I use only one source, having the parameters "Product", "Sales", "Date", and "Price".

I'm trying to create two Tables (visuals) and my wish is to be able to select one product in each Table, and having both products displayed under the same Line chart.

When selecting two products under the same visual this works and I can see the price development throughout the dates, however when selecting one product under each table the Lines disappear and my chart becomes empty.


Scenario 1, where it doesn't work:

BernardesV_1-1719865696357.png

Scenario 2, where it works:

BernardesV_2-1719865731359.png

Would it be possible somehow to make the scenario 1 works in PowerBI, keeping the selection in 2 different tables and having the results displayed under the same line chart?

For me it's important to keep the same line chart to be able to compare the price development for both products.

Any hints are more than appreciated. Thank you so much in advance.

 

Best regards,

Bernardes

3 REPLIES 3
BernardesV
Frequent Visitor

Can someone help me here?

BernardesV
Frequent Visitor

Hi VN999,
I've tried to implement the measure you described in different ways. It's not possible to be applied as part of the line chart and in the tables it doesn't work the expected way.

VN999
Resolver I
Resolver I

Try with this below measure to solve combine productselection:

 

CombinedProductSelection =
IF (
ISFILTERED('Product'[Product Name]),
SELECTEDVALUE('Product'[Product Name]),
CONCATENATEX(
VALUES('Product'[Product Name]),
'Product'[Product Name],
", "
)
)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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