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
lornafnb
Helper I
Helper I

Create relationship between 2 queries and identify nulls

hi all,

 

I have 2 data sets - my "main" data set called Friends :

 

FriendsSurname
JohnWhite
JoeBlack
MarySimmonds

 

and the second one is Friends Birthdays: (note their is an intentional spelling mistake in Jeo's name :)-

 

FriendsBirthday
John01-Feb-22
Jeo05-May-22
Mary12-Dec-22

 

In my model I have created a relationship between these two sets, based  on field "Friends". I would like to identify the fields that link up AND those who dont. So I'm thinking of creating a column in my Main table ("Friends") that 

1) contains the value of Birthday if there is a sucessful join AND

2) a string "No Corresponding record found" if the join returns a null.

 

1). Is there a simple way to do this other than creating a calculated/custom column?

2) otherwise - the code to populate a new calculated/custom for this operation.

 

Maybe I could Merge the 2 tables and somehow identify the columns? I'd need some assistance to do that.

 

Thanks

 

Much appreciated.

1 ACCEPTED SOLUTION
ddpl
Solution Sage
Solution Sage

Hi,

 

If you dont want to create calculated or custom column then you can replace null value with "No Corresponding record found" after merging the table.

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

Use this code in a custom column

= try #"Friends Birthdays"{[Friends=[Friends]]}[Birthday] otherwise "No Corresponding record found"

 

ddpl
Solution Sage
Solution Sage

Hi,

 

If you dont want to create calculated or custom column then you can replace null value with "No Corresponding record found" after merging the table.

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 Kudoed Authors