Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.