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
AlanP514
Post Patron
Post Patron

Create a calculated Column

AlanP514_0-1647357221980.png

Hai All, Need your Help, I want to create a column  yes or no, if the value is blank also want to consider it as "NO" otherwise "yes" 
Note: Both Columns are from Different Tables.

3 REPLIES 3
v-xiaotang
Community Support
Community Support

Hi @AlanP514 

I just wanted to confirm if you resolved this issue? If yes, you can accept the answer helpful as the solution or share you method and accept it as solution, thanks for your contribution to improve Power BI.

If not, could you provide some sample data of the 2 tables?  Thanks.

vxiaotang_0-1647584004032.png

 

Best Regards,

Community Support Team _Tang

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

truptis
Community Champion
Community Champion

Hi @AlanP514 , for linking 2 tables you can use RELATED()  & USERRELATION() etc.

1. Create a new column:
Value1 = CALCULATETABLE(SUMMARIZE(Table1,(Table1[VALUE1]), USERELATIONSHIP(Table2[UniqueKeyToJoinTable1],Table1[UniqueKeyToJoinTable1]))

2. Rsult_Column = If(ISBLANK('table1'[Value1]), "No", IF(ISBLANK('table2'[Value2]),"No", IF('table2'[Value2]="No", "No", "YES")))

@AlanP514 -> If this works for you then please mark it as a solution and hit the thumbs up. Thank you.

 

Regards,

TruptiS

amitchandak
Super User
Super User

@AlanP514 , You have to bring the column in one table.

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

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!

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