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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
aar0n
Advocate II
Advocate II

How to change Date to Index

Basically, i am trying to 'Normalize' time. So the earliest available date per name starts at 1, and increases by 1.

 

Name    -     Date    -     (New Index Column) 

 

Joe              1/1/2017             1

Joe              1/2/2017             2

Joe              1/3/2017             3

Bob             1/1/2017             1

Bob             1/2/2017             2

 

..........

 

 

Basically, i am trying to plot Sales on the Y- axis, and "Working Days" on the X-axis.

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @aar0n,

 

Based on my test, you should be able to use the formula below to create calculate column in your table to add the index column in your scenario. Smiley Happy

Column =
VAR currentDate = Table1[Date]
RETURN
    CALCULATE (
        RANK.EQ ( currentDate, Table1[Date], ASC ),
        ALLEXCEPT ( Table1, Table1[Name] )
    )

c1.PNG

 

Regards

View solution in original post

3 REPLIES 3
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @aar0n,

 

Based on my test, you should be able to use the formula below to create calculate column in your table to add the index column in your scenario. Smiley Happy

Column =
VAR currentDate = Table1[Date]
RETURN
    CALCULATE (
        RANK.EQ ( currentDate, Table1[Date], ASC ),
        ALLEXCEPT ( Table1, Table1[Name] )
    )

c1.PNG

 

Regards

Thank you so much!!! works perfectly!!

 

Greg_Deckler
Community Champion
Community Champion

Perhaps something like:

 

c_Index = DATEDIFF(MIN([Date]),[Date],DAY)+1

My have to reverse the first two parameters, I can never keep that straight...



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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors