Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
DrTorrontegi
Frequent Visitor

Help with measure, average number of calls done by agent per day

Hi all,

 

I'm looking to undestand what is the average number of calls done by agent per day, i could calculate the average number of calls per agent AVERAGEX(values(TableCalls[idAgent]);COUNTROWS(TableCalls)) buy i don't know how to add the Day dimmension on the Measure.

 

I hope anyone will help.

 

Best Regards

 

David

1 ACCEPTED SOLUTION

Hi @DrTorrontegi , 

You could try to use hierarchy to achieve this goal, or you could summarize table , then create measure to achieve this goal. You could refer to my sample for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
dax
Community Support
Community Support

Hi @DrTorrontegi , 

You could refer to @az38 's suggestions, If this don't work, please inform me more detailed information(such as your expected output and your sample data (by OneDrive for Business))? Then I will help you more correctly.

Please do mask sensitive data before uploading.

Thanks for your understanding and support.
Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi,

 

I have changed a bit the measure, i'm looking for a Deviation Chart like the attached but i don't know how to make this, any idea?

Anotación 2020-04-12 174644.png

Regards

Hi @DrTorrontegi , 

You could try to use hierarchy to achieve this goal, or you could summarize table , then create measure to achieve this goal. You could refer to my sample for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks!

 

This an amazing solution!

 

I'm going to test it!

 

 

Table 2 = SUMMARIZE(T1;T1[idEquipo];T1[psudonimo]; "count p"; COUNT(T1[psudonimo]);"count rows"; CALCULATE(COUNT(T1[psudonimo]); ALLEXCEPT(T1;T1[idEquipo])); "count dist"; CALCULATE(DISTINCTCOUNT(T1[psudonimo]); ALLEXCEPT(T1;T1[idEquipo])))

 

az38
Community Champion
Community Champion

Hi @DrTorrontegi 

try smth like

 

=CALCULATE(COUNTROWS(TableCalls); ALLEXCEPT(TableCalls; TableCalls[idAgent]; TableCalls[Date].[Date]) )

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors