Forum Discussion
Anonymous
7 years agoNot applicable
Calculate 5th date from max date
Hello All, I am trying to get the last fifth date from the max date in my table. EmpIDDateDaytype A 21/10/2018 WO A 22/10/2018 AB A 23/10/2018 AB B 24/10/2018 AB A 25...
- 7 years ago
new column = var rankk = RANKX(FILTER('Table';EARLIER('Table'[EmpID])='Table'[EmpID]&&EARLIER('Table'[Daytype])='Table'[Daytype]);'Table'[Date];;DESC) var last5thDate = IF(rankk=5&&[Daytype]<>"WO";[Date];BLANK()) return last5thDatetry this
Anonymous
7 years agoNot applicable
Greg_Deckler petrovnikitamai
What if my data model is looks like this and whenever i get the "NT" value then my rank count should get start from 1 again.
EmpIDDateDaytype
| A | 21-10-2018 | WO |
| A | 22-10-2018 | AB |
| A | 23-10-2018 | AB |
| A | 24-10-2018 | AB |
| A | 25-10-2018 | NT |
| A | 26-10-2018 | AB |
| A | 27-10-2018 | WO |
| A | 28-10-2018 | WO |
| A | 29-10-2018 | AB |
| A | 30-10-2018 | AB |
| B | 21-10-2018 | WO |
| B | 22-10-2018 | AB |
| B | 23-10-2018 | NT |
| B | 24-10-2018 | AB |
| B | 25-10-2018 | AB |
| B | 26-10-2018 | NT |
| B | 27-10-2018 | WO |
| B | 28-10-2018 | WO |
| B | 29-10-2018 | AB |
| B | 31-10-2018 | AB |
Here For B, On 26/10/2018 it is NT, so when ever i get NT in middle of my DayTpe column then it should count from 1 again.
Any Suggestions
Greg_Deckler
7 years agoCommunity Champion
Hmm, I solved a count issue that needed to restart periodically, see if my Cthulhu measure in the Quick Measure Gallery provides a way to do this:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Cthulhu/m-p/509739