This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I need create Sequence number using DAX function. Here is an example
DEPT NO EMP NO SEQNO
10 100 3
10 200 2
10 300 1
20 400 3
20 500 2
20 600 1
I tried using Rankx but could not get it right.
Thanks
Solved! Go to Solution.
Hi @dp106,
For calculated column,
SEQNO =
RANKX (
FILTER ( Table8, Table8[DEPT NO] = EARLIER ( Table8[DEPT NO] ) ),
Table8[EMP NO],
,
DESC,
DENSE
)
For measure,
SEQNO measure =
RANKX (
ALLEXCEPT ( Table8, Table8[DEPT NO] ),
CALCULATE ( SUM ( Table8[EMP NO] ) ),
,
DESC,
DENSE
)
Best regards,
Yuliana Gu
Hi @dp106,
For calculated column,
SEQNO =
RANKX (
FILTER ( Table8, Table8[DEPT NO] = EARLIER ( Table8[DEPT NO] ) ),
Table8[EMP NO],
,
DESC,
DENSE
)
For measure,
SEQNO measure =
RANKX (
ALLEXCEPT ( Table8, Table8[DEPT NO] ),
CALCULATE ( SUM ( Table8[EMP NO] ) ),
,
DESC,
DENSE
)
Best regards,
Yuliana Gu
Hi @dp106
Do you want to follow the order of 'EMP NO'?
Show your code for RANKX and we can have a look
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |