Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Solved! Go to Solution.
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.
Column = VAR currentDate = Table1[Date] RETURN CALCULATE ( RANK.EQ ( currentDate, Table1[Date], ASC ), ALLEXCEPT ( Table1, Table1[Name] ) )
Regards
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.
Column = VAR currentDate = Table1[Date] RETURN CALCULATE ( RANK.EQ ( currentDate, Table1[Date], ASC ), ALLEXCEPT ( Table1, Table1[Name] ) )
Regards
Thank you so much!!! works perfectly!!
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...
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.