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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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