Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi!
I have table with column 'owner'.
I need to make 'index' which is incremented if the owner is equal to 'G' :
owner ... index
G 1
S 1
G 2
S 2
G 3
T 3
T 3
T 3
T 3
S 3
Thanks
Solved! Go to Solution.
Hi @sertim,
I think you need to add an original sort index column to let the formula loop through the table.
Below is the sample.
Original table:
Write calculated column to calculate index based on id.
Index = COUNTROWS(FILTER(ALL('Sample'),[ID]<=EARLIER([ID])&&[Owner]="G"))+0
Result:
Regards,
Xiaoxin Sheng
Hi @sertim,
I think you need to add an original sort index column to let the formula loop through the table.
Below is the sample.
Original table:
Write calculated column to calculate index based on id.
Index = COUNTROWS(FILTER(ALL('Sample'),[ID]<=EARLIER([ID])&&[Owner]="G"))+0
Result:
Regards,
Xiaoxin Sheng
It works!
This is what I need.
Many thanks.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 24 |
| User | Count |
|---|---|
| 120 | |
| 93 | |
| 70 | |
| 69 | |
| 66 |