Forum Discussion
Noak
8 years agoHelper IV
Dynamic Counter
Hi Guys, I would like to create a dynamic counter. I have licence plate column & Date column. I would like to count for each licence Plate how many times it apperas in my data set (by selected ...
Greg_Deckler
8 years agoCommunity Champion
Just do a COUNT on "date" column.
- Noak8 years agoHelper IV
Hey Greg_Deckler I decided not to do that.
I prefer to count num for iteration for each Licence plate in my data set any ideas?
- Eric_Zhang8 years agoMicrosoft Employee
Noak wrote:
Hey Greg_Deckler I decided not to do that.
I prefer to count num for iteration for each Licence plate in my data set any ideas?
A measure counting rows shall work, see the attached pbix file. If this is not your case, please post more sample data and expected output.
cnt = COUNTROWS(yourTable)
- Noak8 years agoHelper IV
Tnx Eric_Zhang
I would like to have the ability to fillter by occurrences.
any tips/tricks (based on countrows massuare, here I created a static counting column and the date isn''t dynamic)?