Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Any one please help for the dax how to solve the question
Solved! Go to Solution.
Hi, @Anonymous
I simulated some data, hoping to restore your problem.
Count =
CALCULATE (
COUNT ( 'Table'[User] ),
FILTER ( ALL ( 'Table' ), [Call duration] < 10 && COUNT ( 'Table'[User] ) > 1 )
)
Does this solve your problem? If it doesn't solve it what kind of results do you expect? Is it possible to provide a short version of the PBIX file for testing? Looking forward to your response, thank you!
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
I simulated some data, hoping to restore your problem.
Count =
CALCULATE (
COUNT ( 'Table'[User] ),
FILTER ( ALL ( 'Table' ), [Call duration] < 10 && COUNT ( 'Table'[User] ) > 1 )
)
Does this solve your problem? If it doesn't solve it what kind of results do you expect? Is it possible to provide a short version of the PBIX file for testing? Looking forward to your response, thank you!
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
New measures
Cnt = Countrows(Call)
Duration = sum(call[Call Duartion in Min])
Active = Countx(filter( values(Call[customer]), [cnt] >1 && [Duration] <=10) , [Customer])
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |