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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ThornTech
Frequent Visitor

Running count that resets

Hi,

 

I have a data set where I want to count the number of Loss or wins in a row, but reset each time it switches to the new name like this:

Win

1
Win2
Win3
Loss1
Loss2
Win1
Win2

 

The Trade UID is the main index for this table that is unique.

ThornTech_0-1633879039537.png

 

Any guidance on how to do this would be great, I've tried quite a few different things and the closest I can get it to create a running count, but can't get it to reset.

 

A sample of the dataset can be found here: https://1drv.ms/u/s!Ag_sNauqdCgpg95oGmGBlk9NJrf0Uw?e=hICHI1 

 

Thanks

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Screenshot 2021-10-10 195951.png

 

PQ and Excel formula are way much conciser and more straightforward,

Grouped = Table.RemoveColumns(Table.Group(Source, "PnL Text", {"ar", each Table.AddIndexColumn(_, "Streak_PQ", 1)}, 0), "PnL Text")

Screenshot 2021-10-10 200134.png

 

Screenshot 2021-10-10 200529.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
ThornTech
Frequent Visitor

This worked a treat, I used the PQ version in the end. Thanks for quick help.

CNENFRNL
Community Champion
Community Champion

Screenshot 2021-10-10 195951.png

 

PQ and Excel formula are way much conciser and more straightforward,

Grouped = Table.RemoveColumns(Table.Group(Source, "PnL Text", {"ar", each Table.AddIndexColumn(_, "Streak_PQ", 1)}, 0), "PnL Text")

Screenshot 2021-10-10 200134.png

 

Screenshot 2021-10-10 200529.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors