Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
I want to count in sequence but using many dax or create new column i get duplicate sequence no. in duplicate data see Below:-
I want count see below:-
Regards,
NICK
Solved! Go to Solution.
First add an Index Column in your Table from the Query Editor >>"Add Column" tab
Then you can use this formula
Expected Situation 1 =
RANKX (
FILTER ( Table1, Table1[Sub] = EARLIER ( Table1[Sub] ) ),
Table1[Value]
- Table1[Index] / 1000,
,
DESC,
DENSE
)
And this for expected situation 2
Expected Situation 2 = RANKX ( Table1, Table1[Value] - Table1[Index] / 1000,, DESC, DENSE )
Please see attached sample file as well
Hi All,
I think right now there is no solution of this situation.
That's why no body answering.
![]()
![]()
![]()
regards,
NICK
First add an Index Column in your Table from the Query Editor >>"Add Column" tab
Then you can use this formula
Expected Situation 1 =
RANKX (
FILTER ( Table1, Table1[Sub] = EARLIER ( Table1[Sub] ) ),
Table1[Value]
- Table1[Index] / 1000,
,
DESC,
DENSE
)
And this for expected situation 2
Expected Situation 2 = RANKX ( Table1, Table1[Value] - Table1[Index] / 1000,, DESC, DENSE )
Please see attached sample file as well
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.