March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Everyone,
I have to lookup rows between two tables. if one row is completely matching with row in other tables have to create a slicer with same else different. Providing sample data below.
ID | NAME |
1 | XYZ |
2 | ABC |
3 | XYZ |
4 | ABC |
ID | NAME |
1 | XYZ |
2 | ABC |
Hi @Anand09 ,
Thank you for reaching out to the Microsoft Fabric Community Forum regarding the issue.
The following steps may help you to create if one row is completely matching with row in another table
IF (
RELATED('Table2'[NAME]) = 'Table1'[NAME],
"same",
"different"
)
Try this calculated column
Ensure that search value from table 2 should be unique.
Hi @Anand09, Please try to create a new calculated column with below formula:
RowMatchStatus =
IF(
COUNTROWS(
FILTER(
Table2,
Table2[ID] = Table1[ID] &&
Table2[NAME] = Table1[NAME]
)
) > 0,
"Same",
"Different"
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |