Forum Discussion
Calculate Distinct Login Per Day
Hi Geeks,
how to create a measure to get count of login per each user within giver time period slicer.
For example: I have 100 users, I want to find out how many days user login into system in within given time period. I only want to count to user login only once a day even if they login multiple times in same day.
Please suggest.
Regards
BVK
Hi itsmebvk ,
Please refer to my .pbix file.
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- amitchandak
Super User
itsmebvk ,
try like
sumx(values('Date'[Date]), calculate(distinctCOUNT(User[USer_ID])))
or
Averagex(values('Date'[Date]), calculate(distinctCOUNT(User[USer_ID])))
- v-lionel-msft
Community Support
Hi itsmebvk ,
Please refer to my .pbix file.
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- itsmebvk
Continued Contributor
amitchandak v-lionel-msft Thanks gor your inputs. I am able to fix my issues based on your inputs. Appreciate your help.