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
Bbrown44
Advocate II
Advocate II

How to create a new conditional column (or new measure) using two date variable for range

Happy New Year Everyone!

 

I have 3 date ranges:

 

(a) September 5 and 18, 2019,

(b) November 1 and December 31, 2019 and

(c) March 1 and April 30, 2020

 

I also have a Date variable that I want to evaluate.

 

I want to create a conditional column that would evaluate if the date variable falls between the 3 date ranges above.  If "No" Than "date is outside of date range" would be populated as a new variable.

 

else if:

 

I also want to identify which range the date falls within in the new variable (i.e., (a), (b), or (c)) when the variable is within one of the date ranges.

 

If I could make this happen with a new measure variable even better.

 

Anyone has any ideas?

 

 

 

 

 

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Bbrown44 ,

From your description, I don't quite understand what you want to achieve, I did the following:

1. Create a condintional column

 

Conditional column = 
IF(
   ( [Date] >= DATE(2019,9,5) && [Date] <= DATE(2019,9,18) )
   ||
   ( [Date] >= DATE(2019,11,1) && [Date] <= DATE(2019, 12, 31) )
   ||
   ( [Date] >= DATE(2020, 3,1) && [Date] <= DATE(2020, 4, 30) ),
   "YES", "NO"
)

 

 bb4.PNG

2. Extract dates that are not in the range.

 

Table 3 = 
SELECTCOLUMNS(
    FILTER(
        'Table 2',
        [Conditional column] = "NO"
    ),
    "New Date",
    [Date]
)

 

bb5.PNG

 

If this is not what you want, could you kindly show what you want in a table?

Especially about these two needs:

N1: " If "No" Than "date is outside of date range" would be populated as a new variable."

N2: "I also want to identify which range the date falls within in the new variable (i.e., (a), (b), or (c)) when the variable is within one of the date ranges."

 

Best regards,
Lionel Chen

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

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @Bbrown44 ,

From your description, I don't quite understand what you want to achieve, I did the following:

1. Create a condintional column

 

Conditional column = 
IF(
   ( [Date] >= DATE(2019,9,5) && [Date] <= DATE(2019,9,18) )
   ||
   ( [Date] >= DATE(2019,11,1) && [Date] <= DATE(2019, 12, 31) )
   ||
   ( [Date] >= DATE(2020, 3,1) && [Date] <= DATE(2020, 4, 30) ),
   "YES", "NO"
)

 

 bb4.PNG

2. Extract dates that are not in the range.

 

Table 3 = 
SELECTCOLUMNS(
    FILTER(
        'Table 2',
        [Conditional column] = "NO"
    ),
    "New Date",
    [Date]
)

 

bb5.PNG

 

If this is not what you want, could you kindly show what you want in a table?

Especially about these two needs:

N1: " If "No" Than "date is outside of date range" would be populated as a new variable."

N2: "I also want to identify which range the date falls within in the new variable (i.e., (a), (b), or (c)) when the variable is within one of the date ranges."

 

Best regards,
Lionel Chen

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

amitchandak
Super User
Super User

If these date ranges are static. Then put that into If in a column.

 

If these dynamic, selected from UI. Put them as a filter in calculate.

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.