
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Avg count set anlysis
How to calculate the average of this calculatiion :
Thanks


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
as below
=AVG( AGGR( YourCountExpression , FieldToAggregateOn ) )
example average count by Country field
=AVG( AGGR( YourCountExpression , Country) )
If a post helps to resolve your issue, please accept it as a Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks but in the count expression, i am counting the number of client reachable and created in a selected period :
If i want the avg, i have 1 as a result :


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Imagine a table with
Dimension = customer_key
Measure = count(distinct customer_key)
The average of this will always be 1! that is what is happening right now
What average do you need exactly?
can you describe if you are trying to count " Avg Customers by ________ ? "
this ______ is the field you should be using for Aggr()
If a post helps to resolve your issue, please accept it as a Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
oh okay thanks, I want to average of customer CREATED AND CONTACTED by week of the month.
For the moment i want to customer created and contactable because i have no idea for the week month
Thanks.
