Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 33 | |
| 33 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 67 | |
| 45 | |
| 30 | |
| 26 |