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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
TJK
Helper I
Helper I

Calculated Column Index that Restarts from 1 Based on Values in Another Column

I am trying to create a DAX calculated column formula that sorts the rows in order based on the "CreatedDate" column and then indexes the rows starting from 1. I want to restart the Index every time the "Net Promoter System" column does not equal "Promoter".

The below formula does not restart the index from 1. How can I adjust it?

Index =
VAR CurrentDate = NPS[CreatedDate]
VAR CurrentRowNumber = NPS[Survey Name]
VAR IsPromoter = NPS[Net Promoter System] = "Promoter"

RETURN
IF(
IsPromoter,
COUNTROWS(
FILTER(
NPS,
NPS[CreatedDate] <= CurrentDate &&
NPS[Survey Name] <= CurrentRowNumber &&
NPS[Net Promoter System] = "Promoter"
)
),
0
)

1 ACCEPTED SOLUTION

Hi,

Thank you for your message, and it is possible.

Please let me know if you have date column and time column separately in the table, or date&time column (combined) in the table.

 

If you have the combined column in the table, it is pretty much similar to the above solution. Please try to write the same DAX formula and check whether it works.

 

However, if you have separate column in the table, I tried to create a new sample like below, and please check the below picture and the attached pbix file.

 

Or, it would be great if you could share your sample pbix file's link, and then I can try to look into it.

Thank you.

 

Jihwan_Kim_0-1730865233834.png

 

IndexCC = 
VAR _condition =
    ADDCOLUMNS (
        NPS,
        "@condition", IF ( NPS[NetPromoterSystem] = "Promoter", 0, 1 )
    )
VAR _group =
    ADDCOLUMNS (
        _condition,
        "@group",
            SUMX (
                FILTER ( _condition, NPS[CreatedDate]+NPS[CreatedTime] <= EARLIER ( NPS[CreatedDate])+EARLIER(NPS[CreatedTime]) ) ,
                [@condition]
            )
    )
VAR _index =
    ADDCOLUMNS (
        _group,
        "@index",
            SUMX (
                FILTER (
                    _group,
                    NPS[CreatedDate]+NPS[CreatedTime] <= EARLIER ( NPS[CreatedDate] )+EARLIER(NPS[CreatedTime])
                        && [@group] = EARLIER ( [@group] )
                ),
                1
            )
    )
RETURN
    MAXX (
        FILTER (
            _index,
            NPS[CreatedDate]+NPS[CreatedTime] = EARLIER ( NPS[CreatedDate] )+EARLIER(NPS[CreatedTime])
                && NPS[SurveyName] = EARLIER ( NPS[SurveyName] )
                && NPS[NetPromoterSystem] = EARLIER ( NPS[NetPromoterSystem] )
        ),
        [@index]
    )

 

 

 

 

 

 


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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

4 REPLIES 4
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1730780967429.png

 

 

IndexCC =
VAR _condition =
    ADDCOLUMNS (
        NPS,
        "@condition", IF ( NPS[NetPromoterSystem] = "Promoter", 0, 1 )
    )
VAR _group =
    ADDCOLUMNS (
        _condition,
        "@group",
            SUMX (
                FILTER ( _condition, NPS[CreatedDate] <= EARLIER ( NPS[CreatedDate] ) ),
                [@condition]
            )
    )
VAR _index =
    ADDCOLUMNS (
        _group,
        "@index",
            SUMX (
                FILTER (
                    _group,
                    NPS[CreatedDate] <= EARLIER ( NPS[CreatedDate] )
                        && [@group] = EARLIER ( [@group] )
                ),
                1
            )
    )
RETURN
    MAXX (
        FILTER (
            _index,
            NPS[CreatedDate] = EARLIER ( NPS[CreatedDate] )
                && NPS[SurveyName] = EARLIER ( NPS[SurveyName] )
                && NPS[NetPromoterSystem] = EARLIER ( NPS[NetPromoterSystem] )
        ),
        [@index]
    )

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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Hi @Jihwan_Kim 

 

Thank you for your response. You understood correctly, and your output is perfect. However, I have "Other" values that show up on the same day as "Promoter". Is it possible to incorporate time as well?

Hi,

Thank you for your message, and it is possible.

Please let me know if you have date column and time column separately in the table, or date&time column (combined) in the table.

 

If you have the combined column in the table, it is pretty much similar to the above solution. Please try to write the same DAX formula and check whether it works.

 

However, if you have separate column in the table, I tried to create a new sample like below, and please check the below picture and the attached pbix file.

 

Or, it would be great if you could share your sample pbix file's link, and then I can try to look into it.

Thank you.

 

Jihwan_Kim_0-1730865233834.png

 

IndexCC = 
VAR _condition =
    ADDCOLUMNS (
        NPS,
        "@condition", IF ( NPS[NetPromoterSystem] = "Promoter", 0, 1 )
    )
VAR _group =
    ADDCOLUMNS (
        _condition,
        "@group",
            SUMX (
                FILTER ( _condition, NPS[CreatedDate]+NPS[CreatedTime] <= EARLIER ( NPS[CreatedDate])+EARLIER(NPS[CreatedTime]) ) ,
                [@condition]
            )
    )
VAR _index =
    ADDCOLUMNS (
        _group,
        "@index",
            SUMX (
                FILTER (
                    _group,
                    NPS[CreatedDate]+NPS[CreatedTime] <= EARLIER ( NPS[CreatedDate] )+EARLIER(NPS[CreatedTime])
                        && [@group] = EARLIER ( [@group] )
                ),
                1
            )
    )
RETURN
    MAXX (
        FILTER (
            _index,
            NPS[CreatedDate]+NPS[CreatedTime] = EARLIER ( NPS[CreatedDate] )+EARLIER(NPS[CreatedTime])
                && NPS[SurveyName] = EARLIER ( NPS[SurveyName] )
                && NPS[NetPromoterSystem] = EARLIER ( NPS[NetPromoterSystem] )
        ),
        [@index]
    )

 

 

 

 

 

 


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.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

Hi @TJK 

 

Please try the following DAX formula:

Index = 
VAR CurrentDate = NPS[CreatedDate]
VAR CurrentRowNumber = NPS[Survey Name]
VAR IsPromoter = NPS[Net Promoter System] = "Promoter"
VAR InitialIndex = RANKX(ALL(NPS), NPS[CreatedDate], , ASC, DENSE)
VAR TempTable = 
    FILTER(
        ADDCOLUMNS(
            ALL(NPS),
            "TempIndex", RANKX(
                FILTER(
                    ALL(NPS),
                    NPS[Net Promoter System] <> "Promoter"
                ),
                NPS[CreatedDate],
                ,
                ASC,
                DENSE
            )
        ),
        NPS[Net Promoter System] <> "Promoter"
    )
VAR NewIndexValue = 
    IF(
        IsPromoter,
        InitialIndex,
        MAXX(
            FILTER(
                TempTable,
                NPS[CreatedDate] = CurrentDate &&
                NPS[Survey Name] = CurrentRowNumber
            ),
            [TempIndex]
        )
    )
RETURN
NewIndexValue

 

vxianjtanmsft_0-1730776433508.png

 

 

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

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.