Forum Discussion
ddpl
Solution Sage
3 years agoCalculate Count...
Data... Client ID Date A1 01-Aug-22 A2 02-Aug-22 A2 03-Aug-22 A3 04-Aug-22 A3 05-Aug-22 A3 06-Aug-22 A4 07-Aug-22 A4 08-Aug-22 A4 09-Aug-22 A4 10-Aug-2...
- Anonymous3 years ago
Hi ddpl ,
I think you can try this code to create a measure.
Count = IF ( MAX ( 'Table'[Date] ) >= DATE ( 2022, 08, 10 ), CALCULATE ( COUNTROWS ( 'Table' ), FILTER ( ALLEXCEPT ( 'Table', 'Table'[Client ID] ), 'Table'[Date] >= DATE ( 2022, 08, 10 ) ) ) )Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
ddpl
Solution Sage
3 years ago
I'm expecting something like below...
Count = CALCULATE( COUNT( Table[Client ID]), FILTER( Table, Table[Date]>=DATE(2022,8,10), ALLEXCEPT( Table, Table[Client ID] ) )
but it won't work.
Anonymous
3 years agoNot applicable
Hi ddpl ,
I think you can try this code to create a measure.
Count =
IF (
MAX ( 'Table'[Date] ) >= DATE ( 2022, 08, 10 ),
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER (
ALLEXCEPT ( 'Table', 'Table'[Client ID] ),
'Table'[Date] >= DATE ( 2022, 08, 10 )
)
)
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- ddpl3 years ago
Solution Sage
Anonymous ,
It worked as expected, Thanks for your sharp DAX.