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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
ratercero
Helper III
Helper III

Filter Query (or create new table) based on first (date) duplicate and values of 2 columns

Hello Everyone,
I've tried my best to find the best solution for my issue on the forums, but got into a dead end, so im asking for help from scratch. instead of modifying my attempts, here it goes:
I have a defect table and intend to filter my query or create a new table acording the following criteria:

First date of defect, no duplicate batch#, Process = Tinto , State <> Aprobado

 

Table for reference:

 

Capture.JPG

Thank You

1 ACCEPTED SOLUTION

Aha, I think I follow now

 

Table 3 = 
VAR T1 = SUMMARIZE('Table','Table'[BATCH#],"First Date" , MIN('Table'[DATE]))
VAR T2 = FILTER(
    NATURALINNERJOIN('Table',T1),[STATE]<> "Aprobado" && [PROCESS]="Tinto" && [First Date] = [DATE])
RETURN T2

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

7 REPLIES 7
Phil_Seamark
Microsoft Employee
Microsoft Employee

Im not sure if I fully understand your needs but this is my interpretation.  Let me know how close I am.

 

Table 2 = 

var T1 = FILTER(
                'Table',
                'Table'[PROCESS]="Tinto"
                && 'Table'[STATE] <> "Aprobado"
                )
                
var T2 = SUMMARIZE(
                T1,
                'Table'[BATCH#] , 
		"Max Date" , 
		MAX('Table'[DATE]))               
return NATURALINNERJOIN(T1,T2)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hello Phil,

This is close but not exactly what I'm looking for, this is my logical thinking of how it should happen:

 

First I need to find the earliest a batch is in the data, no matter if it complies with the other filtered criteria, afterwards it should filter only leave on the table the ones that comply. 

 

Basically im looking for all batches that in their first input comply with the criteria status<> "aprobado" and process  ="Tinto".

 

This is what i got with your suggested formula:

 Capture2.JPG

 They comply with the filters but have duplicate batch #.

I hope I explained myself properly this time.

Any more thougths?

Thanks

 

Is this getting closer?

 

Table 3 = 
VAR T1 = SUMMARIZE('Table','Table'[BATCH#],"First Date" , MIN('Table'[DATE]))
VAR T2 = FILTER(
    NATURALINNERJOIN('Table',T1),[STATE]<> "Aprobado" && [PROCESS]="Tinto")
RETURN SUMMARIZE(T2,'Table'[BATCH#] , "Batches" , COUNTROWS('Table') , "First Date" , min('Table'[DATE]))

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Can you please post a mock-up of what the result table should look like?  

 

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Same as the one in my last post but only with the top result which is the ealiest date:


Capture2 - Copy.JPG

 

 

 

Aha, I think I follow now

 

Table 3 = 
VAR T1 = SUMMARIZE('Table','Table'[BATCH#],"First Date" , MIN('Table'[DATE]))
VAR T2 = FILTER(
    NATURALINNERJOIN('Table',T1),[STATE]<> "Aprobado" && [PROCESS]="Tinto" && [First Date] = [DATE])
RETURN T2

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Thank you!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon โ€“ Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save โ‚ฌ200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors
Top Kudoed Authors