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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
POSPOS
Post Patron
Post Patron

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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