- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

average distinct users per month
I have a table that contains information on users accessing a webpage.
I'm using the following measure to get unique users per day (this is used for the line chart and is correct).
count_of_customer =
COUNTROWS (
SUMMARIZE ( 'cr20b_commscampusauditlogs3', 'cr20b_commscampusauditlogs3'[UserId], 'cr20b_commscampusauditlogs3'[CreationTime].[Date])
)
I'd also like to include a table that has the monthly average.
I have tried creating a second measure but using [CreationTime].[Month] instad of Day. This is in the table on the right, showing 622 users. But the value is clearly wrong, as the max unique users per day is around 340.
Can anyone suggest what I have done wrong?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@nick9one1 , Create a Date table and join the Date (Without time) with Date of date table and create a measure given below
Avg of Month =
calculate(
Averagex(Values('Date'[Year Month]) , calculate(
COUNTROWS (
SUMMARIZE ( 'cr20b_commscampusauditlogs3', 'cr20b_commscampusauditlogs3'[UserId], 'Date'[Date])
))), removefilters('date'))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@nick9one1 , Create a Date table and join the Date (Without time) with Date of date table and create a measure given below
Avg of Month =
calculate(
Averagex(Values('Date'[Year Month]) , calculate(
COUNTROWS (
SUMMARIZE ( 'cr20b_commscampusauditlogs3', 'cr20b_commscampusauditlogs3'[UserId], 'Date'[Date])
))), removefilters('date'))

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
04-22-2024 02:59 PM | |||
11-04-2024 07:38 AM | |||
09-18-2024 07:33 AM | |||
09-27-2024 04:21 AM | |||
07-30-2024 05:40 PM |
User | Count |
---|---|
137 | |
107 | |
84 | |
60 | |
46 |