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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

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

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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