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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
epelton
Frequent Visitor

Sum and total per row for calculated column

I am trying to sum 3 columns. This DAX for a calculated column sums all rows in the dataset rather than summing per row. epelton_0-1688132178892.png

 

Using a measure with the same DAX works, but the total is then wrong....

epelton_2-1688132921657.png

How do I get the correct sum per row and total

1 ACCEPTED SOLUTION
BIswajit_Das
Solution Supplier
Solution Supplier

Hello @epelton 
Check if any of the column data values are of decimal. That may be reason for the result to be in decimal.

OR

You can use
CC_booked_contract =
VAR _res = your DAX
RETURN

ROUNDUP(_res,0)
Hope if this solution helps you

View solution in original post

1 REPLY 1
BIswajit_Das
Solution Supplier
Solution Supplier

Hello @epelton 
Check if any of the column data values are of decimal. That may be reason for the result to be in decimal.

OR

You can use
CC_booked_contract =
VAR _res = your DAX
RETURN

ROUNDUP(_res,0)
Hope if this solution helps you

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors