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
vj123456
New Member

DAX - Index

Hi Team,

how to get the index number like this in calculated column using DAX.

I don't need Power Query solution, RANKX also.

the order of coutry should change

 

CountryIndex
Canada1
France2
Germany3
USA4
Bermuda5
1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @vj123456 ,

 

You could create a calculated table.

DAX Indexed Table = 
    VAR __SourceTable = 'Table'
    VAR __Count = COUNTROWS(__SourceTable)
    VAR __SortText = CONCATENATEX(__SourceTable,[Country],"|")
    VAR __Table = 
        ADDCOLUMNS(
            GENERATESERIES(1,__Count,1),
            "Country",PATHITEM(__SortText,[Value],TEXT)
        )
RETURN
    __Table

vstephenmsft_0-1671604352473.png

Reference:

The Mythical DAX Index - Microsoft Power BI Community

 

Best Regards,

Stephen Tao

 

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

View solution in original post

1 REPLY 1
v-stephen-msft
Community Support
Community Support

Hi @vj123456 ,

 

You could create a calculated table.

DAX Indexed Table = 
    VAR __SourceTable = 'Table'
    VAR __Count = COUNTROWS(__SourceTable)
    VAR __SortText = CONCATENATEX(__SourceTable,[Country],"|")
    VAR __Table = 
        ADDCOLUMNS(
            GENERATESERIES(1,__Count,1),
            "Country",PATHITEM(__SortText,[Value],TEXT)
        )
RETURN
    __Table

vstephenmsft_0-1671604352473.png

Reference:

The Mythical DAX Index - Microsoft Power BI Community

 

Best Regards,

Stephen Tao

 

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

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.

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