Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
Company | Part Number | Stock Status |
A | 123ABC | Stock |
B | 123ABC | No Stock |
C | 456ABC | No Stock |
D | 456ABC | Stock |
E | 789XYZ | Stock |
F | 789XYZ | No Stock |
G | 741QWE | Stock |
H | 741QWE | No Stock |
Does anyone have a solution for this?
Hi,
What exact results are you expecting?
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], ", " )
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?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
75 | |
56 | |
38 | |
34 |
User | Count |
---|---|
99 | |
56 | |
51 | |
44 | |
40 |