The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I want to create a new column in Buildings table which gives:
IF ( CONTAINS (RELATEDTABLE ([Countries]), Countries[Code]), "other" )
Thank you.
Hi @Bibeksharma,
If your two tables has one to one relationship by the code, you could try this formula:
Column = IF(ISBLANK(RELATED(Countries[Country])),"other",RELATED(Countries[Country]))
Result:
You can also download the PBIX file to have a view.
https://www.dropbox.com/s/12k0ozlquoa8y76/IF%20and%20RELATED%20functions.pbix?dl=0
Regards,
Daniel He
Hi Daniel,
The tables have one to many relationship.
Thank you
Based on your description i'd be expecting something like this:
YourFieldsName = VAR countryCode = FIRSTNONBLANK(Countries[Code], Countries[Code]) RETURN IF( ISBLANK(countryCode), "other", countryCode )
Hi,
I get an error: Token Eof expected
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |