Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Bibeksharma
Regular Visitor

IF and RELATED functions

I want to create a new column in Buildings table which gives:

  • the country name, if it can find a related value in the Countries table; or
  • Other otherwise.
    Buildings table is related with Countries table via Countries' code column and Buildings' CountryCode

    I am thinking something along the lines of formula shown below but i am not quite sure.
    IF (
    CONTAINS (RELATEDTABLE ([Countries]), Countries[Code]),
    
     
    
    "other"
    )



    Thank you.


4 REPLIES 4
v-danhe-msft
Employee
Employee

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:

1.PNG

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

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Daniel,
The tables have  one to many relationship. 
Screenshot_1.png

 

Thank you

Anonymous
Not applicable

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.