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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
prady2581
Helper I
Helper I

Allselected not considering the date filter context

I use below dax code to calculate % of client survyes to the total survey count received. 

% Contribution of clients =
DIVIDE(
COUNT(
'Raw data'[clientname]),[Client_count_All])
Client_count_All is a measure =  
CALCULATE(
COUNT('Raw data'[clientname]),ALLSELECTED('Raw data')
)
 
When a table matrix visual , i put the client name and total surveys then % Contribution of clients and 1 date slicer it gives the correct figures. the moment i add month year as column in the table matrix it is not giving the correct figures. i think it is adds up the total for jul'22 and aug'22 and then it takes this amount as total count 
 
I want this measure to accept all context from slicers or and on table matrix ( in table matrix row will be always client name and column will be either month, or quarter from the date dim table). please provide some guidance on how to fix this. 
 
 this is correct 
date slicer      
01-07-202231-Jan-23 clienttotal surveystotal count% contribution
   a4520002%
   b3020002%
   1420001%
   d320000%
   5620003%
    9820005%
   total2000 100%

 

this is not correct

date slicer  total surveys% contribution    
01-07-202231-Jan-23clientJul-22total count%Jul-22total count%
  a4512004%3412003%
  b3012003%6712006%
  1412001%2312002%
  d312000%3712003%
  5612005%4412004%
   9812008%3912003%
  total 1200    
1 REPLY 1
amitchandak
Super User
Super User

@prady2581 , In that case you should use remove filters of client

 

Client_count_All =
CALCULATE(
COUNT('Raw data'[clientname]),removefilters('Raw data'[client] )
)

 

Learn Power BI: All, allselected, removefilters,allexcept- https://www.youtube.com/watch?v=cN8AO3_vmlY&t=24270s

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors