Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hai All, please help me to solve this error,
I am trying to create a flag, but these two tables are in an inactive relationship,
The logic is if the ambassador's name is present in the t1 table then yes otherwise no but these two tables are in inactive mode
and I am getting this error so how to solve this error please help me
Solved! Go to Solution.
Hi @AlanP514 ,
I created some data:
Ambassador:
T1:
Here are the steps you can follow:
1. Create calculated column.
Column =
var _column=SELECTCOLUMNS('T1',"1",'T1'[User Name])
return
IF(
'ambassador'[Name] in _column ,"Yes","No")
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @AlanP514 ,
I created some data:
Ambassador:
T1:
Here are the steps you can follow:
1. Create calculated column.
Column =
var _column=SELECTCOLUMNS('T1',"1",'T1'[User Name])
return
IF(
'ambassador'[Name] in _column ,"Yes","No")
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The USERELATIONSHIP function needs 2 columns so it should look like...
USERELATIONSHIP('Ambassador'[Ambassador Email],'T1 Data Base'[User Email])
Although I don't believe this will get you what you're looking for. Are you trying to create a calculated column with this?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |