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
Hello,
I have been trying to sum Pay1, Pay2, and Pay3... data by the same month. What is the best way to solve this? Thanks!
try:
Sum Pay1 = CALCULATE (SUM(Table[Pay1]), ALLEXCEPT(Table, Table[SignedDate]))
etc...
Proud to be a Super User!
Paul on Linkedin.
@PaulDBrown Forgot to mention Pay1, Pay2, Pay3... are all measures. The Dax formula above doesn't accept sum('Tablename'[Pay1]). How would I sum Dax measures (Pay1, Pay2, Pay3..)?
It depends on what the measures calculate, but in principle:
Sum Pay1 by month= CALCULATE [Pay1], ALLEXCEPT(Table, Table[SignedDate]))
or
SUMX(ALLEXCEPT(Table, Table[SignedDate]), [Pay1]))
Proud to be a Super User!
Paul on Linkedin.
Hi @Brite ,
Could you pls share your .pbix file for test?
Remember to remove the confidential information.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
You need to replace 'Table' in the expression to your actual table name!
Proud to be a Super User!
Paul on Linkedin.
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.