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
Rigoleto
Helper II
Helper II

Create a new index column base on two columns

 

Need some DAX code to build a new Index column, as the screen shoot shown, I need use the column "NAME" and "Index' to build the new one.

 

Thanks in advance for your help

ROMPIDO.png

 

1 ACCEPTED SOLUTION

@Rigoleto

 

Please see attached file

 

createanindex.png


Regards
Zubair

Please try my custom visuals

View solution in original post

7 REPLIES 7
RMDNA
Solution Sage
Solution Sage

Hi @Rigoleto,

 

What's the logic here? I don't see a pattern in the new index.

Sorry,

 

Basically the logic is this, notice that the column name has two diferences descriptions, "UNIR HOMBROS" and "UNIR HOMBRO 1", and every sigle descrition has they own sub division, "AVERAGE", "GOAL" and "MAX", I need to build something like the sceenshot shown

ROMPIDO.png

@Rigoleto

 

Try this technique

 

First Add another Index Column from Query Editor

 

Then may be this calculated column will do the job

 

Column =
VAR Counts =
    CALCULATE (
        COUNT ( Table1[NAME] ),
        FILTER ( Table1, [NAME] = EARLIER ( [NAME] ) )
    )
RETURN
    IF (
        Counts = 1,
        RANKX (
            FILTER (
                Table1,
                CALCULATE (
                    COUNT ( Table1[NAME] ),
                    FILTER ( Table1, [NAME] = EARLIER ( [NAME] ) )
                )
                    = 1
            ),
            [NAME],
            ,
            DESC,
            DENSE
        ),
        RANKX ( FILTER ( Table1, [NAME] = EARLIER ( [NAME] ) ), [Index],, ASC, DENSE )
    )

Regards
Zubair

Please try my custom visuals

@Rigoleto

 

Please see attached file

 

createanindex.png


Regards
Zubair

Please try my custom visuals

Thanks a lot for this input guys,

I did add the logic but, I getting this error, any comments about this issue?

ROMPIDO.png

Sorry guys,

 

Ignore my previous post, I did have a lapsus stupidus, 🙂

Hi 

So Zubair_Muhammad's solution really helps you, right?

After testing, the solution turns out to be correct.

Could you kindly mark the answer as a solution?

 

Best Regards

Maggie

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.