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! Learn more

Reply
Kristofferaabo
Helper IV
Helper IV

lookup between tables

Hi!
I have a table which is linked to two tables thorugh the same relationship: "Project number"

 

I now want to make a column which returns 'Yes' if the given project number is in either of the linked tables.

 

Makes sense?

Krsitoffer

 

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

HI @Kristofferaabo

 

Try this COlumn

 

Column =
IF (
    OR (
        CALCULATE ( COUNTROWS ( LinkedTable1 ) ) > 0,
        CALCULATE ( COUNTROWS ( LinkedTable2 ) ) > 0
    ),
    "Yes"
)

View solution in original post

9 REPLIES 9
Zubair_Muhammad
Community Champion
Community Champion

HI @Kristofferaabo

 

Try this COlumn

 

Column =
IF (
    OR (
        CALCULATE ( COUNTROWS ( LinkedTable1 ) ) > 0,
        CALCULATE ( COUNTROWS ( LinkedTable2 ) ) > 0
    ),
    "Yes"
)

Hi,

 

@Zubair_Muhammad thanks for your input! always a pleasure! 

 

Below is by relationships, table A, B and C all have the column 'Project'. I would like to be able to have column in table A indicating whether the project is also present in table B and C. Either with a Yes, or 1 or similar..

 

That way I can filter it off/on

 

Thanks

Kristoffer

 

PBI_columns.jpg

 

Yes, perhaps I misunderstand it, but it found 'find' the columns..

I tried this:

Column =
IF (
    OR (
        CALCULATE ( COUNTROWS ( TABLE B [Project] ) ) > 0,
        CALCULATE ( COUNTROWS ( TABLE C [PROJECT] ) ) > 0
    ),
    "Yes"
)

No i cant get powerBI to find/suggest the tables, I tried the RELATED function also...

It also asked for a table? I guess it suppose to be columns?

Hi @Kristofferaabo

 

This is a DAX formula for a calculated column in Table A

 

When I use this formula using some dummy data...it works

 

Could you show the screen shot of the error you get?? or share your file??

Hi! I think did something weird in the relationship! it works now.. ! Your solution is great thanks!

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