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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
amanuit
Regular Visitor

Conditional column and the value matching from different table.

I am trying to add a column and the value will depend on data from different sheets. Like i have imported two sheets 1 and 2.

 

and trying to add a column that if value of column A in sheet1 is available in sheet2's coulmn A then return NO else YES but when i am trying to write below equation, i am not able to add 'Sheet2'[A].

 

New_Updated = IF(Sheet1'[New]=".",".",IF(ISERROR(IN('Sheet1'[A],'Sheet2'[A], 0)),"YES", "NO"))
 
Can you please help me, Do i need to create some relationship?
 
1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @amanuit ,

I created some data:

sheet1:

vyangliumsft_0-1660024060361.png

sheet2:

vyangliumsft_1-1660024060362.png

Here are the steps you can follow:

1. Create calculated column.

Column =
IF(
    'sheet1'[column A] in SELECTCOLUMNS('sheet2',"column A",'sheet2'[coulmn A]),"YES","NO")

2. Result:

vyangliumsft_2-1660024060363.png

If you need pbix, please click here.

 

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

View solution in original post

6 REPLIES 6
v-yangliu-msft
Community Support
Community Support

Hi  @amanuit ,

One of your Values is of Type Text and the other value is of Integer, and you need to convert it to the same type so that you can compare.

vyangliumsft_0-1660642554112.png

 

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.

v-yangliu-msft
Community Support
Community Support

Hi  @amanuit ,

I created some data:

sheet1:

vyangliumsft_0-1660024060361.png

sheet2:

vyangliumsft_1-1660024060362.png

Here are the steps you can follow:

1. Create calculated column.

Column =
IF(
    'sheet1'[column A] in SELECTCOLUMNS('sheet2',"column A",'sheet2'[coulmn A]),"YES","NO")

2. Result:

vyangliumsft_2-1660024060363.png

If you need pbix, please click here.

 

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

I am trying to match value of sheet1 with Sheet2.

My value is in format of SR-324, PR-423.

Getting error message, "DAX Comparison do not support comparing value of type Text with value of type integer, consider using the value or Format function to convert one of the values", How can i solve this?

amanuit
Regular Visitor

Hello Amit, Thank you for reply.

I am not able to enter table1.

I am getting error that column Table1[A] either does not exist or doesnot have a relationship to any table available in the current context.

I also tried to create relationship between two table, many to many.

 

 

 

amitchandak
Super User
Super User

@amanuit , If you want to check if the value is there in another table or not

 

A new column in table 1

= var _cnt = countx(filter(Table2, Table2[A] = Table1[A]) , Table2[A])

return

if(isblank(_cnt), false() , true())

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Hello Amit, Thank you for reply.

I am not able to enter table1. when i try to select table 2, it is not showing in dropdown

I am getting error that column Table1[A] either does not exist or doesnot have a relationship to any table available in the current context.

I also tried to create relationship between two table, many to many. I think some issue in relationship, not able to resolve, can you please help me

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors