Forum Discussion
Anonymous
3 years agoNot applicable
Distinct count how many users failed repeatedly
Hi there, Suppose i have this table (date is in dd/mm/yyyy): user | date | sales a | 1/1/21 | 80 a | 1/2/21 | 110 a | 1/3/21 | 150 b | 1/1/21 | ...
o0llied
3 years agoFrequent Visitor
Hello aidelapplicate,
I think i understand your issue and have created a powerbi report based on your example data set.
I got the following results while trying to create what you described:
I hope this is what you are looking to do.
I have created this using the following two measures:
failed count =
CALCULATE(
COUNT(Data[User]),
Data[sales] < 100
)repeater =
IF(
[failed count] > 1,
CALCULATE(
COUNT(Data[User]),
Data[sales] < 100
),
BLANK()
)
You can download my pbix file here: download pbix file
Hope this helps.
If this solved your problem, please give a thumbs up and mark this answer as your solution 🙂
Have a nice day!