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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
MennoBynco
New Member

Return 0 or 1 when date is between start and end date

Hi Guys,

 

I want my formula to return a 1 if it is between a specific start and end date. I have specified my start and end date, but whatever I try to get te formula to return a 1 for all the dates in that range I get an error. 

Can you please help me.

 

MennoBynco_0-1659448827516.png

Thanks in advance.

Menno

 

1 ACCEPTED SOLUTION

Hey,

 

This is because you didn't formulate 'Today' in your VAR StartDate. Is your StartDate February 1, 2022 and your EndDate November 30, 2022? For that you can use this code:

 

 

Trailling 63 = 
VAR StartDate =
    EOMONTH ( TODAY (), -7 ) + 1
VAR EndDate =
    EOMONTH ( StartDate, 9 )
RETURN
    CONVERT ( [Date] >= StartDate && [Date] <= EndDate, INTEGER )

 

 

Let me know if your start and end dates are different.

View solution in original post

4 REPLIES 4
Barthel
Solution Sage
Solution Sage

Use this below RETURN:

 

RETURN 
IF ( [Date]>= StartDate && [Date] <= EndDate, 1, 0 )

 

 

Hi Barthel, 

 

Thanks for your response. 

With this formula it returns 1 for every date. It does not take 'today' as a starting point for my calculation. 

 

Hey,

 

This is because you didn't formulate 'Today' in your VAR StartDate. Is your StartDate February 1, 2022 and your EndDate November 30, 2022? For that you can use this code:

 

 

Trailling 63 = 
VAR StartDate =
    EOMONTH ( TODAY (), -7 ) + 1
VAR EndDate =
    EOMONTH ( StartDate, 9 )
RETURN
    CONVERT ( [Date] >= StartDate && [Date] <= EndDate, INTEGER )

 

 

Let me know if your start and end dates are different.

Thanks! That's what I was looking for.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.