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

Merge column from two tables to create one common slicer

I have two simialar tables that have similar data.  One has a start location, a few other data fields, and an expense amount.  The other has a destination location, a few other data fields, and a different expense amount.  For my presentation I have two charts.  One chart shows the start location expenses.  The other shows the destination expenses.  I am attempting to create a single slicer that filters both locations.  The number of locations is limited.  To solve the problem for the short term I created a new table with the "Enter Data" option and typed in the twenty or so locations in the current data set.  I created a relationship between the entered table and both of my other two tables.  This is not ideal as other locations my pop up.  How can I create my entered "location" table dynamically based on the two data tables?

Steve

1 ACCEPTED SOLUTION
msornakumar
Advocate III
Advocate III

Hi,

 

  A calulate table can be used for the below purpose. Check the below Pseudocode

 

LocationTbl = 
VAR StartLocation =
    SELECTCOLUMNS ( SL, "StartLocation", SL[StartLocation] )
VAR EndLocation =
    SELECTCOLUMNS ( EL, "EndLocation", EL[EndLocation] )
RETURN
    DISTINCT(UNION ( StartLocation, EndLocation ))

View solution in original post

2 REPLIES 2
msornakumar
Advocate III
Advocate III

Hi,

 

  A calulate table can be used for the below purpose. Check the below Pseudocode

 

LocationTbl = 
VAR StartLocation =
    SELECTCOLUMNS ( SL, "StartLocation", SL[StartLocation] )
VAR EndLocation =
    SELECTCOLUMNS ( EL, "EndLocation", EL[EndLocation] )
RETURN
    DISTINCT(UNION ( StartLocation, EndLocation ))

Thanks.  Just what the newbi needed 🙂

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