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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
hnblann
New Member

DAX Add Index Column that groups by week and sorts by date

Hello, I'm trying to create an index column, where when the data is grouped by week, and the pickup date is in ascending order, the index reads 1, 2, 3, 4, etc. and that starts back over at 1 for the next week.

 

How would I go about doing that?

hnblann_1-1677174791673.png 

hnblann_0-1677175406353.png

 

 

 

 

1 REPLY 1
Greg_Deckler
Super User
Super User

@hnblann This solves everything except how to resolve ties between duplicate dates. PBIX is attached below signature.

Column = 
    VAR __Date = [Date]
    VAR __Week = [Week]
    VAR __WeekTable = FILTER(ALL('Table2'),[Week] = __Week)
    VAR __TextTable = CONCATENATEX(__WeekTable,[Date] * 1.,"|",[Date])
    VAR __Table = 
        ADDCOLUMNS(
            GENERATESERIES(1,COUNTROWS(__WeekTable),1),
            "__Date", PATHITEM(__TextTable,[Value])
        )
RETURN
    MAXX(FILTER(__Table, [__Date] = (__Date * 1.) & ""),[Value])

 


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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.