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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors