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

Don'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.

Reply
eliottbbedard
Frequent Visitor

Create DAX index between 2 dates in a date table

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))

eliottbbedard_0-1691507484109.png

 

Does anyone have any idea how I can achieve this?

 

Thank you for your help!

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@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()
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @eliottbbedard 

You may filter 'Date' inside the RANKX for the same dates. 

eliottbbedard
Frequent Visitor

 @Greg_Deckler It works perfectly! Thank you very much for the quick response

Greg_Deckler
Super User
Super User

@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()
)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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