Forum Discussion
AlanP514
4 years agoPost Patron
Dax error
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...
- Anonymous4 years ago
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
Syk
4 years agoResident Rockstar
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?