Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hey Guys,
Simple Question for you, I have two tables one for Badge IDs and Another for Persons Name. I need to know how to make it when there is no relation that it will show up as "Invalid Badge ID" in tables, graphs, etc since this is user enter data.
Example:
Table 1 Table 2
IDs Names
123 Joe
452 Mike
632 Emily
123 = Joe
124 = Invalid Badge ID
Solved! Go to Solution.
Hi @Boveitj,
Assume there is a relationship between Table 1 and Table 2 based on IDs, then you can create a Calculated column like below:
Column1= IF(IsBlank(Related(Table 2[Names])),"Invalid Badge ID",Related(Table 2[Names]))
Best Regards,
Qiuyun Yu
Hi @Boveitj,
Assume there is a relationship between Table 1 and Table 2 based on IDs, then you can create a Calculated column like below:
Column1= IF(IsBlank(Related(Table 2[Names])),"Invalid Badge ID",Related(Table 2[Names]))
Best Regards,
Qiuyun Yu
Could you not create an if function? If values match those in table a, return name, else return 0/invalid (in the case there is no match) ?
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 43 | |
| 35 | |
| 32 |