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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Conditional Column if value exists in a column in a related table

Hello All,

 

I have two tables Table A which has basic values and an empty 'Status' column and Table B which contains multiple rows with values ranging from 1-4 (Status numbers). Both tables are related.

 

I am looking to populate the empty column in Table A with a value ranging from 1-3 based on if a value exists in Table B[Value].

 

eg. if Table B[Value] contains 1 then Table A[Status] = 1,

        else if Table B[Value] contains 2 and not 1 then Table A[Status] = 2,

        else  Table B[Value] contains 3 and not 1 or 2 then Table A[Status] = 3

 

Please reach out if you have any questions and any help at all is appreciated. Thank you.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try a new column like

 

new column =
var _st = minx(relatedtable(TableB),TableB[Value]) //or // related(TableB[Value])
return
switch(true() ,
search("1",_st,,0) >0, 1,
search("2",_st,,0) >0, 2,
search("3",_st,,0) >0, 3,
4)

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try a new column like

 

new column =
var _st = minx(relatedtable(TableB),TableB[Value]) //or // related(TableB[Value])
return
switch(true() ,
search("1",_st,,0) >0, 1,
search("2",_st,,0) >0, 2,
search("3",_st,,0) >0, 3,
4)

Anonymous
Not applicable

Hello @amitchandak ,

 

This seems to be working well now. 

 

Thank you very much for the quick response! 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.