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
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
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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