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

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

Reply
POSPOS
Post Partisan
Post Partisan

Index for each group using DAX

Hi All,

I have a requiremet to get the idexes for each group of data.

Please find sample data below:


Note: We have other columns too in the actual data. this is only a sample data

ProtocolStatusDate
AApproved1/2/2022
BOpen5/6/2022
BIn Progress5/7/2022
BClosed5/8/2022
CIn Progress5/7/2022
CClosed5/8/2022
DExempt5/9/2023

 

Expected Output:

ProtocolStatusDateIndex
AApproved1/2/20221
BOpen5/6/20221
BIn Progress5/7/20222
BClosed5/8/20223
CIn Progress5/7/20221
CClosed5/8/20222
DExempt5/9/20231

 

Could somone pls let me know how to achieve this using DAX.

 

Thank you

 

2 REPLIES 2
vicky_
Super User
Super User

If the Index is based on date, then you're basically looking for the count of items less than or equal to the current date for each Protocol. 

 

This is the DAX I used: 

Index = COUNTROWS(FILTER(ALL('Table'), 'Table'[Date] <= SELECTEDVALUE('Table'[Date]) && 'Table'[Protocol] = SELECTEDVALUE('Table'[Protocol]))) 

vicky__1-1695940637279.png

 

 

@vicky_  I am trying to assign a row number for every statuses of a protocol. Can we have the DAX without using the date?

Helpful resources

Announcements
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