cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sboobar
Frequent Visitor

First Production Date across Category

I am trying to find the date that first production of any kind (green>0 or red>0) occurred for an item and to assign that date across the category item #. Below is a sample set of my data and a column showing the expected results I hope to get. Please help! 

 

DateItem #GreenRedExpected Results (First Prod Date)
1/1/202310.000.001/3/2023
1/2/202310.000.001/3/2023
1/3/202318.004.001/3/2023
1/4/202313.0075.001/3/2023
1/1/2023219.0044.001/1/2023
1/2/202320.000.001/1/2023
1/3/2023224.0046.001/1/2023
1/1/202330.000.001/2/2023
1/2/2023317.0017.001/2/2023
1 ACCEPTED SOLUTION
FreemanZ
Community Champion
Community Champion

hi @sboobar 

try like:

Column =
MINX(
    FILTER(
        TableName,
        TableName[Item]= EARLIER(TableName[Item] )
          &&TableName[Green]<>0
         &&TableName[Red]<>0
    ),
    TableName[Date]
)

View solution in original post

3 REPLIES 3
sboobar
Frequent Visitor

How would this same formula work if the two columns that needed to be <> 0 came from two different tables? For example I still need the first date of production between red or green of an item but those columns are in the two tables {see below}. The tables are already joined by an index in the model

 

TABLE 1   
DateItemGreen 
1/1/202317 
1/2/20231545 
1/3/2023168 
1/1/2023221 
1/2/20232547 
1/3/2023285 
1/1/20233312 
1/2/202330 
1/3/202334 
    
    
TABLE 2   
DateItemRed 
1/1/202315 
1/2/2023164 
1/3/2023112 
1/1/2023278 
1/2/2023292 
1/3/2023241 
1/1/202332 
1/2/202337 
1/3/202337 
sboobar
Frequent Visitor

This worked! Thanks!

FreemanZ
Community Champion
Community Champion

hi @sboobar 

try like:

Column =
MINX(
    FILTER(
        TableName,
        TableName[Item]= EARLIER(TableName[Item] )
          &&TableName[Green]<>0
         &&TableName[Red]<>0
    ),
    TableName[Date]
)

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!