Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
In PowerBI desktop, I am working on finding unique ID numbers that do not have production plans.
There are two different tables being referenced, one with production data by unique ID. The other table has different material numbers that make up one unique ID (same as other table). My goal is to find "Material ID" that do not have production data.
I used the below DAX
"Unique ID" 234234 and "Unique ID" 313134 both use Material ID 123456 but only "Unique ID" 234234 has production planned. I need to isolate the Material IDs like 654321 that does not have Production Planned for ALL instances of that Material ID. Filtering by blanks does not work as the Unique ID 313134 row would give a blank for Material ID 123456 but this Material ID is being used.
I hope this makes sense and any help is appreciated!
@jhearn123 , Based on what I got try measure like
CALCULATE(DISTINCTCOUNT('ProductionTable'[Unique ID]),FILTER('ProductionTable', 'ProductionTable'[Material ID] = EARLIER('MaterialTable'[Material ID])))
@amitchandak unfortunately that does not work as the 'ProductionTable' does not contain the value MaterialID. The relationship between the two tables is the UniqueID. But multiple UniqueIDs can use a single MaterialID, so need to eliminate MaterialIDs that have any UniqueIDs in 'ProductionTable'
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |