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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
OECvargoj
Frequent Visitor

Matching based on conditions

Hello,

 

I'm trying to display matching part numbers based on them having an opposite Stock Status. Using the example data below, I need a way to match Company A with Company B based on them both having Part Number 123ABC in their inventory while at the same time having opposite Stock Status.

 

CompanyPart NumberStock Status
A123ABCStock
B123ABCNo Stock
C456ABCNo Stock
D456ABCStock
E789XYZStock
F789XYZNo Stock
G741QWEStock
H741QWENo Stock

 

Does anyone have a solution for this?

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

 

What exact results are you expecting?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

@OECvargoj

 

Try this column for more than 1 match

 

Column =
CONCATENATEX (
    FILTER (
        ALL ( 'Table1' ),
        Table1[Part Number] = EARLIER ( Table1[Part Number] )
            && Table1[Stock Status] <> EARLIER ( Table1[Stock Status] )
    ),
    Table1[Company],
    ", "
)

 


Regards
Zubair

Please try my custom visuals

BraneyBI
Kudo Commander
Kudo Commander

Assume the table is called "Table1", add a calculated COLUMN which will show the reciprocal company.

 

=CALCULATE( VALUES('Table1'[Company]),FILTER(ALL('Table1'),Table1[Part Number] = EARLIER(Table1[Part Number])&&Table1[Stock Status]<>EARLIER(Table1[Stock Status])))

 

 

Thank you @BraneyBI! The calculated column is working however, when I add more than 2 companies to my dataset, I get an error message. Is there any way to modify the calculated column to account for more companies and possibly more than one match?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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