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
sudanaditya
Regular Visitor

Formula to validate two date ranges

Hello All - I have a requirement where we need to write a validation either in DAX or in Power Query for the below scenario.

Clone start date  9/1/2019

Clone End date  9/5/2019

CRP start date - 9/5/2019

CRP End date -10/1/2019

 

The scenario   is that the conditional colum should populate"Risk" else "no Risk"  if any one of the dates in the  CRP start date and CRP end Date ( Range) fall in betweeen Clone Start - Clone end date ( Range) .

Thanks in advance .

Sudan

1 ACCEPTED SOLUTION
d_gosbell
Super User
Super User

Putting the folling in a calculated column should give you want you want. This logic should cover both full and partial overlaps.

 

= IF (  [CRP start date] <= [Clone end date] 
  && [CRP end date] >= [Clone start date], "Risk", "No Risk")

View solution in original post

1 REPLY 1
d_gosbell
Super User
Super User

Putting the folling in a calculated column should give you want you want. This logic should cover both full and partial overlaps.

 

= IF (  [CRP start date] <= [Clone end date] 
  && [CRP end date] >= [Clone start date], "Risk", "No Risk")

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.

Top Solution Authors