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
al1ceDav1n
Regular Visitor

Dax SUM Issue - Column

Hi I am working in DAX Studio and have a column in my model that consist of 

 

Failure to deliver cash Settlement fails value = SWITCH( TRUE(), [TYA-QRY] = 0 && [Date] = {EFF_PLI_DV} && [FTY_RSN_ID] = "CASH", 0, 

[STH_SPL_CD] = "FAND"" && [Date] = [SFL_HUS_DATE] && [FTY_RSN_ID] = "CASH" ,0,  [FTY_RSN_ID] <> "CASH" ,0, [FAD_EUR]

 

works perfect in power bi 

 

However I need to sum this in DAX and having issues 

 

Tried 

Failure to deliver cash Settlement fails value = SUM([Failure to deliver cash Settlement fails value]) but still not summing any ideas please 

 

Thanks loads

Ally

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @al1ceDav1n ,

Here are a few troubleshooting steps you can try:

  • Check that the column is being recognized as a numeric data type. If it's not, you won't be able to sum it.
  • Check that the column is not being filtered out by any filters in the query. If the column is being filtered out, it won't be included in the sum.
  • Try using the SUMX function instead of SUM. SUMX allows you to sum a column that is the result of a calculation.   

 

Failure to deliver cash Settlement fails value =
SUMX ( TableName, [Failure to deliver cash Settlement fails value] )

 

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @al1ceDav1n ,

Here are a few troubleshooting steps you can try:

  • Check that the column is being recognized as a numeric data type. If it's not, you won't be able to sum it.
  • Check that the column is not being filtered out by any filters in the query. If the column is being filtered out, it won't be included in the sum.
  • Try using the SUMX function instead of SUM. SUMX allows you to sum a column that is the result of a calculation.   

 

Failure to deliver cash Settlement fails value =
SUMX ( TableName, [Failure to deliver cash Settlement fails value] )

 

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

some_bih
Super User
Super User

Hi @al1ceDav1n function SWITCH return single value. You need to rework your measure / output to sum it. 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






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.