Forum Discussion
Anonymous
3 years agoNot applicable
Counting consecutive the rows in a category
Hello everyone, I'm trying to create a calculated column where I count the numer of consecutive weeks that an employee is in a determined quartile. It should be a DAX calculated column. To take into account, an different employees may start working at different id_weeks.
To add on, everytime that an employee changes from quartile, the counter is reseted.
As an example, I have to be able to create the column "Weeks on quartile" in the following table.
| id_week | id_employee | quartile | Weeks on quartile |
| 1 | 1 | q1 | 1 |
| 2 | 1 | q1 | 2 |
| 3 | 1 | q2 | 1 |
| 4 | 1 | q1 | 1 |
| 5 | 1 | q1 | 2 |
| 3 | 2 | q3 | 1 |
| 4 | 2 | q4 | 1 |
| 5 | 2 | q4 | 2 |
| 2 | 3 | q2 | 1 |
| 3 | 3 | q2 | 2 |
| 4 | 3 | q2 | 3 |
| 5 | 3 | q2 | 4 |
| 6 | 3 | q1 | 1 |
| 7 | 3 | q1 | 2 |
Anonymous This is Cthulhu: Cthulhu - Microsoft Power BI Community
2 Replies
- Greg_DecklerCommunity Champion
Anonymous This is Cthulhu: Cthulhu - Microsoft Power BI Community
- AnonymousNot applicable
Hi, I had to make some changes but got it working.
Here is the final result:Weeks in Quartile =VAR __index = CALCULATE(MAX([id_week])) //What is my current row index?VAR __group = CALCULATE(MAX([id_employee])) //What is my current group?VAR __tmpTable1 = FILTER(ALL('Table'),[id_employee]=__group&&[id_week]<__index) //Return all rows earlier than the current row within the same "group"VAR __tmpTable2 = ADDCOLUMNS(__tmpTable1,"__diff",[id_week] - MAXX(FILTER(ALL('Table'),[id_week]<EARLIER([id_week]) && [id_employee]=EARLIER([id_employee])),[id_week])) //For each returned row, calculate the difference between the current index value and the previous index value within the same group. For rows in grouped sequence, this will be 1 but for rows within a group that are out-of-sequence this value will be greater than 1VAR __max = MAXX(__tmpTable2,[id_week]) //Figure out the max index in the current filtered table.VAR __maxStart = MAXX(FILTER(__tmpTable2,[__diff]>1),[id_week]) //In order to account for "skips" in the grouping, figure out the max index value of the latest "skip" (the row right after the skip where the group starts again) This will be the greatest index where the difference from the previous index in the same group is greater than 1 (previous row)VAR __tmpTable3 = FILTER(__tmpTable2,[id_week]>=__maxStart) //Filter out all the other junk because we don't want to count rows before the skipRETURN IF(ISBLANK(__max),1,IF(__max=__index-1,COUNTROWS(__tmpTable3)+1,1)) //If __max is blank, we know that we are at the start of the table, so 1. If the max index of our original table is 1 less than the current index, we know that we are in sequence so we count all of our filtered rows (which don't include rows past a "skip"), otherwise return 1 because we know we are on the row immediately after a "skip.
Thanks!