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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
micklowe
Helper I
Helper I

Building a new table from two BI tables

Hi Everyone,

 

I'm trying to build a table based on 2 existing tables but I need to join to one of the tables using a parameter, I have this code which works from one table:

 

ClientCodes=SELECTCOLUMNS(FILTER('anallink','anallink'[AG_Type]="C"),"Type",'anallink'[AG_Type],"AC_Code",'anallink'[AC_Code],"PCT",'anallink'[AL_PCT])

 

I need to bring in another field based on the AL_PCT field, is it possible to do this? 

 

Thanks 

 

Mick

 

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

Hi @micklowe ,

 

According to your description, I made a sample and here is my solution.

I wonder whether I understand your requirement correctly, please follow steps below.

Sample data:

vxiaosunmsft_0-1668757297162.png

Create a new table as what you wrote.

ClientCodes =
SELECTCOLUMNS (
    FILTER ( 'TABLE_A', 'TABLE_A'[AG_TYPE] = "C" ),
    "Type", 'TABLE_A'[AG_TYPE],
    "AC_CODE", 'TABLE_A'[AC_CODE],
    "PCT", 'TABLE_A'[AL_PCT]
)

vxiaosunmsft_1-1668757371440.png

Then you can establish a relationship between TABLE_B and new table.

vxiaosunmsft_2-1668757423595.png

Create a calculated column in the new table.

Column =
RELATED ( TABLE_B[OTHER] )

Final output:

vxiaosunmsft_3-1668757485492.png

 

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ xiaosun

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-xiaosun-msft
Community Support
Community Support

Hi @micklowe ,

 

According to your description, I made a sample and here is my solution.

I wonder whether I understand your requirement correctly, please follow steps below.

Sample data:

vxiaosunmsft_0-1668757297162.png

Create a new table as what you wrote.

ClientCodes =
SELECTCOLUMNS (
    FILTER ( 'TABLE_A', 'TABLE_A'[AG_TYPE] = "C" ),
    "Type", 'TABLE_A'[AG_TYPE],
    "AC_CODE", 'TABLE_A'[AC_CODE],
    "PCT", 'TABLE_A'[AL_PCT]
)

vxiaosunmsft_1-1668757371440.png

Then you can establish a relationship between TABLE_B and new table.

vxiaosunmsft_2-1668757423595.png

Create a calculated column in the new table.

Column =
RELATED ( TABLE_B[OTHER] )

Final output:

vxiaosunmsft_3-1668757485492.png

 

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ xiaosun

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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