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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Balhemkan
Helper III
Helper III

Total even if filtered

Hello Team, 

 

I have two tables

 

Table a

Column

A

B

C

 

Table B

ColumnA  sales

A              10

B               20

C               50

 

 

I am using Table A column in slicer

 

  • My scenario is if only C is filtered then show only 50 else show 30 which is sum of A + B

I wrote dax for this but if we select A in slicer then it is showing only 10 instead of 30

When I select B in slicer then it is showing 20 instead of 30.

Could you help me with dax like even if we select A Or B it should show 30 only not specific values under it. 

 

Kindly help me

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Balhemkan ,

I such a case do not join these two tables

 

create a measure like

measure =

if("C" in values(Tablea[Column]), calculate(Sum(Tableb[Sales]),filter( Tableb, Tableb[ColumnA] = "C")) , calculate(Sum(Tableb[Sales]),filter( Tableb, Tableb[ColumnA] <> "C")) )

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

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Balhemkan ,

I such a case do not join these two tables

 

create a measure like

measure =

if("C" in values(Tablea[Column]), calculate(Sum(Tableb[Sales]),filter( Tableb, Tableb[ColumnA] = "C")) , calculate(Sum(Tableb[Sales]),filter( Tableb, Tableb[ColumnA] <> "C")) )

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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