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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
kelvinbala
Regular Visitor

ALL & ALLEXCEPT, ALL FUNCTION.. Want to display the overall average in each row

Hi Team, 

 

The code below works, it calculates the service Level of three different teams, 

 

Service Level= CALCULATE(COUNTROWS('Call Log'), 'Call log'[CAMPAIGN] = "Inbound", Call Log[Queue TIme (sec)] <= 1) / [Total Inbound Call]
 
Now the issue is that instead of showing the service level for each team, I don't want to filter by Team 
 
kelvinbala_1-1626222867764.png

 

 
I have two Tables, Call Log and Teams Table. How can I use the ALL or ALLEXCEPT 
 
 

 

 
 
 
 
 
 
 
1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Try this measure

Measure = calculate([Sevice level],all(Teams[Team]))

Also, modify your Service level measure to

Service Level= divide(CALCULATE(COUNTROWS('Call Log'), 'Call log'[CAMPAIGN] = "Inbound", Call Log[Queue TIme (sec)] <= 1),[Total Inbound Call])


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

1 REPLY 1
Ashish_Mathur
Super User
Super User

Hi,

Try this measure

Measure = calculate([Sevice level],all(Teams[Team]))

Also, modify your Service level measure to

Service Level= divide(CALCULATE(COUNTROWS('Call Log'), 'Call log'[CAMPAIGN] = "Inbound", Call Log[Queue TIme (sec)] <= 1),[Total Inbound Call])


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.