Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
HI experts!
I have a dimensional table that contains an indivudual value column per article:
Article | Sequence | RANKX |
ABC | 30 | 1 |
ABC | 50 | 3 |
ABC | 80 | 4 |
ABC | 40 | 2 |
CDE | 5 | 1 |
CDE | 8 | 2 |
Now I would like to add a calculated colum that shows me the rank for this column per Article. - as you can see in the last column.
How is this possible?
Solved! Go to Solution.
Hi @joshua1990
Add this calculated column to the table:
NewColumn =
RANKX(FILTER(Table1, Table1[Article] = EARLIER(Table1[Article])), Table1[Sequence], , ASC)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @joshua1990
Add this calculated column to the table:
NewColumn =
RANKX(FILTER(Table1, Table1[Article] = EARLIER(Table1[Article])), Table1[Sequence], , ASC)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |