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

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

Reply
mihaistanca7
Frequent Visitor

Create a table like a slicer

Hi

I have this situation where in the felt table there is some calculated data.

I must display these positions in multiple scenarios, without first 3 clients, than without first 7 , 15 and so on based on their total value.

I initially tried to use table as filter visual but i do not have possibility to make all clients default "all selected" than to deselect first 3, 5...

When i use slicer, it doesn't let me to insert a second column with total value near client name.

In this example i deselected first 5 clients so the value in the left table is 418,221 instead of 985,829 which is in the "filer table"

Any ideea about how can i solve this?

Thank you

mihaistanca7_0-1706393078573.png

 

1 ACCEPTED SOLUTION
Daniel29195
Super User
Super User

@mihaistanca7 

 

what about changing the dax formulat in the left table to something like the following logic : 
when you select on the table visual , 

take all the other not selected clients.

would you think something like this would solve your problem  ? 

 

 

this is the dax : 

measue = 

var d =  values(table_name[client_column])
var all_clients =  all(table_name[client_col]) 

 

var ex =  except ( all_clients , d ) 

 

var calc =  

calculate ( 

sum(tabl_name[col]) , 

keepfilters ( ex ) 

 

return 

calc

 

 

If my answer helped sort things out for you, feel free to give it a thumbs up and mark it as the solution! It makes a difference and might help someone else too. Thanks for spreading the good vibes! 👍🤠

View solution in original post

2 REPLIES 2
Daniel29195
Super User
Super User

@mihaistanca7 

 

what about changing the dax formulat in the left table to something like the following logic : 
when you select on the table visual , 

take all the other not selected clients.

would you think something like this would solve your problem  ? 

 

 

this is the dax : 

measue = 

var d =  values(table_name[client_column])
var all_clients =  all(table_name[client_col]) 

 

var ex =  except ( all_clients , d ) 

 

var calc =  

calculate ( 

sum(tabl_name[col]) , 

keepfilters ( ex ) 

 

return 

calc

 

 

If my answer helped sort things out for you, feel free to give it a thumbs up and mark it as the solution! It makes a difference and might help someone else too. Thanks for spreading the good vibes! 👍🤠

Good ideea:)

 

Thank you

Helpful resources

Announcements
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