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
Anonymous
Not applicable

Merge Contents of two tables using a date range in the logic

Are  joins involving date ranges possible when merging?

 

I have two data sources that will help me count the number of business days between a single appointment's [Appt Made Date] and [Appt Visit Date]

Table 1. Scheduled Appts: [Appt Key], [Appt Made Date], [Appt Visit Date]

Table 2. Date Dimension: [Date], [Holiday Flag], [Weekend Flag]

 

Ideally I want to merge these two data sources like so

Select

S.[Appt Key], Count(D.Date)

FROM Scheduled Appts S

LEFT OUTER JOIN Date Dimension D ON D.[DATE] BETWEEN S.[Appt Made Date] AND S.[Appt Visit Date]

WHERE  [Holiday Flag] IS NULL AND [Weekend Flag] IS NULL

GROUP BY S.[Appt Key]

 

Is something like that allowed with merging or appending?

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

Seems like there might be the potential to do some more sophisticated joining with Table.Join but there is no documentation on the joinAlgorithm parameter:

 

https://msdn.microsoft.com/en-us/library/mt260788.aspx

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

v-shex-msft
Community Support
Community Support

Hi @Anonymous,

 

smoupre's solution seems well, but if you use the sql server database, you can directly write the T-SQL query at sql statement option:

 

Capture.PNG

Notice: "DirectQuery" mode has some limitations with sql query.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

 

smoupre's solution seems well, but if you use the sql server database, you can directly write the T-SQL query at sql statement option:

 

Capture.PNG

Notice: "DirectQuery" mode has some limitations with sql query.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
Greg_Deckler
Super User
Super User

Seems like there might be the potential to do some more sophisticated joining with Table.Join but there is no documentation on the joinAlgorithm parameter:

 

https://msdn.microsoft.com/en-us/library/mt260788.aspx

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.