Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I summed 14 columns of data using the SUMX function but instead of receiving individual values per row, I've recevied one big summed figure. Should I be doing something differently?
The formula I used is:
MeassureName = SUMX(TableName, TableName[column a] +TableName[column b] +TableName[column c] ...)
Solved! Go to Solution.
Hi,
add Calculate before SUMX to change to row context. e.g
CALCULATE(SUMX(TableName, TableName[column a] +TableName[column b] +TableName[column c] ...))
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Hi,
add Calculate before SUMX to change to row context. e.g
CALCULATE(SUMX(TableName, TableName[column a] +TableName[column b] +TableName[column c] ...))
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.