This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 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 |
|---|---|
| 27 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 46 | |
| 23 | |
| 18 | |
| 18 |