Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 ,
Glad that your query has been resolved. If our community member's response addressed your question, please Accept it as answer and click Yes if you found it helpful.
Should you have any further questions, feel free to reach out.
Thank you for being a part of the Microsoft Fabric Community Forum!
Hi @Anand09 ,
I just wanted to kindly follow up to see if you had a chance to review my previous response. Please let me know if it was helpful, and feel free to reach out if needed any further assistance. If our community member's response addressed your query, please Accept the answer so that it will be helpful to others to find it more quickly.Thank you.
Hi @Anand09 ,
Glad that your query has been resolved. If our community member's response addressed your question, please Accept it as answer and click Yes if you found it helpful.
Should you have any further questions, feel free to reach out.
Thank you for being a part of the Microsoft Fabric Community Forum!
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!
Check out the February 2025 Power BI update to learn about new features.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
83 | |
69 | |
68 | |
39 | |
37 |