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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Rookarumba
Helper III
Helper III

M Language : How to write M to match date that is in-between two dates

Hi Everyone,

 

I need some advice or help to write a M syntax that matches a date that fall within a date range in another table.

 

E.g.

 

Table 1
ID | Production Date

1  | 2015

 

Table 2

ID | Production Start | Production End | Project Name

1   | 2008                | 2018                | DodoBird

 

Basically, if Table 1 production date falls within Table 2. I can merge and expand to give me "DodoBird".

 

http://radacad.com/dates-between-merge-join-in-power-query

I tried the above method with a subset data and somehow it expanded to about 1 mil rows (the initial row without applying this method was 200+ rows)

 

Thanks in Advance 🙂

 

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Rookarumba,

 

You could first merge two tables with Full Outer Join, then, filter rows based on specific condition.

1.PNG

 

Add below filter code in Advanced editor.

 #"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each [Production Date] >= [Table2.Production Start] and [Production Date] <= [Table2.Production End])

3.PNG

 

Best regards,

Yuliana Gu

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

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Rookarumba,

 

You could first merge two tables with Full Outer Join, then, filter rows based on specific condition.

1.PNG

 

Add below filter code in Advanced editor.

 #"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each [Production Date] >= [Table2.Production Start] and [Production Date] <= [Table2.Production End])

3.PNG

 

Best regards,

Yuliana Gu

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

What if you wanted to put in fixed dates like 1/1-2018 to 12/31/2018?

@v-yulgu-msft, Sorry for the late reply and Yes it works like a charm 🙂

 

Thanks so much 🙂

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.