Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi everyone,
I need some help with the creation of an index between 2 dates. I've created an automatic date table using the Calendarauto() function and I'd like to create an index in a calculated column between 2 dates (starting at 0).
I'm using the RANKX function as below to create an index starting on June 6, 2019 and ending on August 29, 2019 but the index is starting at 157 instead of 0.
Index 1 =
VAR StartDate = DATE(2019,06,06)
VAR EndDate = DATE(2019,08,29)
Return
IF(
'Date'[Date] >= StartDate
&& 'Date'[Date] <= EndDate,
RANKX('Date','Date'[Date],,ASC))
Does anyone have any idea how I can achieve this?
Thank you for your help!
Solved! Go to Solution.
@eliottbbedard Try this:
Index 1 =
VAR StartDate = DATE(2019,06,06)
VAR EndDate = DATE(2019,08,29)
Return
IF(
'Date'[Date] >= StartDate
&& 'Date'[Date] <= EndDate,
( [Date] - StartDate ) * 1.,
BLANK()
)
@eliottbbedard Try this:
Index 1 =
VAR StartDate = DATE(2019,06,06)
VAR EndDate = DATE(2019,08,29)
Return
IF(
'Date'[Date] >= StartDate
&& 'Date'[Date] <= EndDate,
( [Date] - StartDate ) * 1.,
BLANK()
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
12 | |
11 | |
8 |
User | Count |
---|---|
24 | |
17 | |
11 | |
11 | |
10 |