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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Auto_queen
Helper I
Helper I

DAX SUM formula not working when field is removed from Table visual

Hello, 

 

I have a simple formula 

Total Adjust Fee Amount = 

SUM('Closing Report'[TR1__Adjusted_Fee_Amount__c]
 
The total is correct when the "Name" field is added to the table visual, but when I remove the "Name" field the total is very wrong.  (See picture). 
 
Auto_queen_0-1663709709814.pngAuto_queen_1-1663709727211.png

 

I tried this formula:

Total Adjust Fee Amount =
SUMX(
    VALUES('Closing Report'[Name]),
    CALCULATE(SUM('Closing Report'[TR1__Adjusted_Fee_Amount__c])
    )
)

 

but it doesn't do anything. I'm very stuck. Please help.

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Auto_queen Try:

Measure =
  VAR __Table = SUMMARIZE('Table','Table'[Name],"__Sum",SUM('Closing Report'[TR1_Adjusted_Fee_Amount_c[))
RETURN
  SUMX(__Table,[__Sum])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@Auto_queen Try:

Measure =
  VAR __Table = SUMMARIZE('Table','Table'[Name],"__Sum",SUM('Closing Report'[TR1_Adjusted_Fee_Amount_c[))
RETURN
  SUMX(__Table,[__Sum])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Worked thank you

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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.