Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Community,
I am currently trying to find a way to permanent filter the Sequence E2E and Sub-Group Sequence E2E below from multiple rows with the same vendor name/ number. I want to only show the lowest number of Sequence E2E and Sub-Group Sequence E2Eper vendor name/vendor Number.
For Example: with Vendor Name Aladdin Temp Rite i want to only show Sequence E2E and Sub Group Sequence E2E to 1 and 1.
Thank you so much for helping me,
Solved! Go to Solution.
Hi @Anonymous ,
You could create a measure as below to get the min value of each vendor name/vendor Number.
Measure = CALCULATE(MIN('Table'[value1]),ALLEXCEPT('Table','Table'[ID]))
Measure 2 = CALCULATE(MIN('Table'[value2]),ALLEXCEPT('Table','Table'[ID]))
Then create another measure to compare the record with these min value.
Measure 3 = IF(SELECTEDVALUE('Table'[value1])=[Measure]&&SELECTEDVALUE('Table'[value2])=[Measure 2],1,0)
At last, add the second measure to filter.
Best Regards,
Jay
Hi @Anonymous ,
You could create a measure as below to get the min value of each vendor name/vendor Number.
Measure = CALCULATE(MIN('Table'[value1]),ALLEXCEPT('Table','Table'[ID]))
Measure 2 = CALCULATE(MIN('Table'[value2]),ALLEXCEPT('Table','Table'[ID]))
Then create another measure to compare the record with these min value.
Measure 3 = IF(SELECTEDVALUE('Table'[value1])=[Measure]&&SELECTEDVALUE('Table'[value2])=[Measure 2],1,0)
At last, add the second measure to filter.
Best Regards,
Jay
@Anonymous - Are you trying to do this in Power Query or create a new table using DAX or ?
Hello, I am trying rebuilt the table using DAX