March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Thanks in advance.
Menno
Solved! Go to 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.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |