Forum Discussion
Anonymous
6 years agoNot applicable
Count of Active Users In date range
Hi I have a dataset like below User Created Date Last Date Ami 01-06-2020 17-06-2020 Asi 03-07-2020 28-07-2020 Neel 06-07-2020 22-07-20...
- 6 years ago
Hi Anonymous
take a look at the following solution:
Count active User = CALCULATE( COUNTROWS('Table'), FILTER( 'Table', 'Table'[Created Date] <= MIN('Calendar'[Date]) && 'Table'[Last Date] >= MIN('Calendar'[Date]) ) )Regards from the town where the legend of the Pied Piper of Hamelin is at home
FrankAT (Proud to be a Datanaut)
FrankAT
6 years agoCommunity Champion
Hi Anonymous
take a look at the following solution:
Count active User =
CALCULATE(
COUNTROWS('Table'),
FILTER(
'Table',
'Table'[Created Date] <= MIN('Calendar'[Date]) && 'Table'[Last Date] >= MIN('Calendar'[Date])
)
)
Regards from the town where the legend of the Pied Piper of Hamelin is at home
FrankAT (Proud to be a Datanaut)
Anonymous
6 years agoNot applicable
Thank you
It is working