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
juancosta2911
Regular Visitor

Days in a row working

Hello,

I have a data set with people and days worked:

Person      date                              What I need

A              01/01/2022                     1

A              02/01/2022                     2

B             02/01/2022                      1
A              03/01/2022                     3
B              04/01/2022                     1

So is like each time is not the next day he should back to 1 so i can keep the record about the max days worked in a row.

I am open to solutions in M or DAX 

Thanks in advacnce

           

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @juancosta2911 

Please try calculated columns as below:

Index = RANKX(filter('Table 1','Table 1'[Person]=EARLIER('Table 1'[Person])),'Table 1'[Date],,ASC,Dense) 
Group = 'Table 1'[Date]-'Table 1'[Index] 
New Index = RANKX(filter('Table 1','Table 1'[Person]=EARLIER('Table 1'[Person])&&'Table 1'[Group]=EARLIER('Table 1'[Group])),'Table 1'[Index],,ASC,Dense) 

veasonfmsft_0-1655461145001.png

Best Regards,
Community Support Team _ Eason

 

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @juancosta2911 

Please try calculated columns as below:

Index = RANKX(filter('Table 1','Table 1'[Person]=EARLIER('Table 1'[Person])),'Table 1'[Date],,ASC,Dense) 
Group = 'Table 1'[Date]-'Table 1'[Index] 
New Index = RANKX(filter('Table 1','Table 1'[Person]=EARLIER('Table 1'[Person])&&'Table 1'[Group]=EARLIER('Table 1'[Group])),'Table 1'[Index],,ASC,Dense) 

veasonfmsft_0-1655461145001.png

Best Regards,
Community Support Team _ Eason

 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.