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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
FRG
Resolver I
Resolver I

First value of another table base on date

Hi,

I have 2 tables. Table 1 contains IDBoard and the date/time for each:

Capture.JPG

Table 2 contains production run with a start date and end date:

Capture.JPG

 

In table 2 I want to add a new column with the first IDBoard stamp after Start date of table 2. The expecting result should be:

Capture.JPG

Note: Table 1 contains around 30 millions rows!

How can I do that?
Thanks

 

 

 

 

 

1 ACCEPTED SOLUTION

Hi @FRG ,

 

You use this measure:

First IDBoard =
VAR start1 =
    SELECTEDVALUE ( table2[start] )
VAR end1 =
    SELECTEDVALUE ( table2[end] )
RETURN
    CALCULATE (
        MIN ( table1[idBoard] ),
        table1[timeStamp] >= start1
            && table1[timeStamp] <= end1
    )

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

4 REPLIES 4
v-eachen-msft
Community Support
Community Support

Hi @FRG ,

 

You can create a measure in your second table.

First IDBoard =
VAR start1 =
    SELECTEDVALUE ( table2[start] )
VAR end1 =
    SELECTEDVALUE ( table2[end] )
RETURN
    CALCULATE (
        MIN ( table1[idBoard] ),
        DATESBETWEEN ( table1[timeStamp], start1, end1 )
    )

Then you can get result you want in a visual.3-1.PNG

 

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Hi @v-eachen-msft ,

This measure give me an error: duplicate dates dont't work with DATESBETWEEN function. 

Any ideas?
Thanks

Hi @FRG ,

 

You use this measure:

First IDBoard =
VAR start1 =
    SELECTEDVALUE ( table2[start] )
VAR end1 =
    SELECTEDVALUE ( table2[end] )
RETURN
    CALCULATE (
        MIN ( table1[idBoard] ),
        table1[timeStamp] >= start1
            && table1[timeStamp] <= end1
    )

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.
vanessafvg
Super User
Super User

@FRG  can you provide the data in  text format?  (ie no pics)





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.