cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
KN8
Frequent Visitor

How can I create a simple index/ row number which is dynamic

Hi All,

I have a product table with ID, DATE, PRODUCT ,Count of  products and index across the table.

IDdateProduct namecountIndex
A0011/1/2023Apple11
B0021/2/2023Samsung42
C0031/3/2023Apple53
D0041/4/2023Microsoft24
E0051/5/2023Google35
F0061/6/2023Apple66

 

How to create a dynamic index which auto assigns the series when a filter is applied. For example, product name = 'Apple'
Output :

IDdateProduct namecountIndex
A0011/1/2023Apple11
C0031/3/2023Apple52
F0061/6/2023Apple63

 

Appreciate for your help!

 

Thanks

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, 

I assume you want to create a meausure, not a calculated column.

Please check the below picture and the attached pbix file.

I authored a measure that results the index number, and it is depending on the date and the ID column.

Please kindly correct me if the logic to create the index number is different.

 

Jihwan_Kim_0-1674066479718.png

 

Index measure: =
COUNTROWS (
    WINDOW (
        1,
        ABS,
        0,
        REL,
        SUMMARIZE (
            ALLSELECTED ( Data ),
            Data[ID],
            Data[date],
            Data[Product name],
            Data[count]
        ),
        ORDERBY ( Data[date], ASC, Data[ID], ASC )
    )
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @KN8 ,

 

Here are the steps you can follow:

1. Create measure.

Measure =
RANKX(
   ALLSELECTED('Table'),CALCULATE(MAX('Table'[date])),,ASC)

2. Result:

vyangliumsft_0-1675131843160.png

 

vyangliumsft_1-1675131843161.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Jihwan_Kim
Super User
Super User

Hi, 

I assume you want to create a meausure, not a calculated column.

Please check the below picture and the attached pbix file.

I authored a measure that results the index number, and it is depending on the date and the ID column.

Please kindly correct me if the logic to create the index number is different.

 

Jihwan_Kim_0-1674066479718.png

 

Index measure: =
COUNTROWS (
    WINDOW (
        1,
        ABS,
        0,
        REL,
        SUMMARIZE (
            ALLSELECTED ( Data ),
            Data[ID],
            Data[date],
            Data[Product name],
            Data[count]
        ),
        ORDERBY ( Data[date], ASC, Data[ID], ASC )
    )
)

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors