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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
tragonneau
Frequent Visitor

Related table - Calculated column

Hello,

 

I use DirectQuery.

I am working with two tables, let's say Table1 and Table2 for exemple :

Table1.pngTable2.png

 

The relation between these 2 tables is : Table2[id] (many)=>(one) Table1[id]

 

I wanted to create a calculated column like this :

CalculatedColumn = IF(RELATED(Table1[deal_type]) = "Sell";Table2[sell_destination];Table2[buy_destination])

 

To have a result like this :

Table2WithNewColumn.png

 

But it seems I can't use RELATED in calculated columns in DirectQuery.

 

Also, using RELATED in measures causes me this error : 'The column xxx either doesn't exist or doesn't have a relationship to any table available in the current context'. 

 

I feel a bit lost because I think this problem is easy to solve but I can't find a way to do it...

I would be happy to have some help. 

 

 

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @tragonneau,

 

I also verified that we may not be able to use RELATED function to create calculate columns in Direct Query mode currently. However, you should be able to use RELATED function to create a measure in Direct Query mode in your scenario. 

 

As the RELATED function requires a row context to work correctly, you need to create a row context inside a DAX expression by using iterators(SUMX, FILTER etc.). The formula below is for your reference.Smiley Happy

Measure = 
IF (
    HASONEVALUE ( Table2[id] ),
    IF (
        CALCULATE (
            COUNTROWS ( Table2 ) = 1,
            FILTER ( Table2, RELATED ( Table1[deal_type] ) = "Sell" )
        ),
        VALUES ( Table2[sell_destination] ),
        VALUES ( Table2[buy_destination] )
    )
)

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @tragonneau,

 

I also verified that we may not be able to use RELATED function to create calculate columns in Direct Query mode currently. However, you should be able to use RELATED function to create a measure in Direct Query mode in your scenario. 

 

As the RELATED function requires a row context to work correctly, you need to create a row context inside a DAX expression by using iterators(SUMX, FILTER etc.). The formula below is for your reference.Smiley Happy

Measure = 
IF (
    HASONEVALUE ( Table2[id] ),
    IF (
        CALCULATE (
            COUNTROWS ( Table2 ) = 1,
            FILTER ( Table2, RELATED ( Table1[deal_type] ) = "Sell" )
        ),
        VALUES ( Table2[sell_destination] ),
        VALUES ( Table2[buy_destination] )
    )
)

 

Regards

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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