cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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 November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors