Forum Discussion
Conditional column and the value matching from different table.
- Anonymous4 years ago
Hi amanuit ,
I created some data:
sheet1:
sheet2:
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:
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
Hi amanuit ,
I created some data:
sheet1:
sheet2:
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:
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?