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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
a100
Frequent Visitor

New column to pull from separate query where date is between

I have a table of products and the times they were being produced between (Changeover Table). I want to link this with an Output Table to pull in the product that was being produced at the time of the timestamp. However the timestamps in the second table do not typically match any of the timestamps in the Changeover Table.

 

Some example data is below. I would like to have the Product column populated with 'A'.

Table 1: Changeovers

Product

StartDateTime

EndDateDate

A

01/03/2021 09:32:30

04/03/2021 21:39:42

B

04/03/2021 21:39:43

21/03/2021 00:42:11

C

21/03/2021 00:42:12

03/04/2021 20:32:12

 

Table 2: Output

Timestamp

Output since last reading

Product

02/03/2021 00:10:00

10

 

02/03/2021 00:20:00

13

 

02/03/2021 00:30:00

9

 

 

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @a100 

 

Is it possible to return more than 1 product? Say Timestamp happens to be between Start and End for more than 1 product? In your case, just A, otherwise combine them?

Vera_33_0-1640156194157.png

= Table.AddColumn(yourPreviousStep, "Product", each [a=[Timestamp],
b=Table.SelectRows(Changeovers, each [StartDateTime]<=a and [EndDateDate]>=a),
c=Text.Combine(b[Product],",")][c])

 

View solution in original post

2 REPLIES 2
a100
Frequent Visitor

Hi @Vera_33, thank you this has worked!

Vera_33
Resident Rockstar
Resident Rockstar

Hi @a100 

 

Is it possible to return more than 1 product? Say Timestamp happens to be between Start and End for more than 1 product? In your case, just A, otherwise combine them?

Vera_33_0-1640156194157.png

= Table.AddColumn(yourPreviousStep, "Product", each [a=[Timestamp],
b=Table.SelectRows(Changeovers, each [StartDateTime]<=a and [EndDateDate]>=a),
c=Text.Combine(b[Product],",")][c])

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors
Top Kudoed Authors