Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 26 | |
| 22 | |
| 22 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 35 | |
| 29 | |
| 21 | |
| 19 | |
| 17 |