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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

How to use SUMX and VALUES with multiple filter columns?

Hi,

 

I am using a formula to create the SUM of a measure:

Total Underutilisation = IF(HASONEVALUE([servername]), [Underutilisation], SUMX(VALUES([servername]), [Underutilisation]))
 
I actually have two fields filtering the calculated Underutilisation, the servername as well as the accountname.
How do I incorporate more than one column into the VALUES field to calculate the real SUM?
 
 
 
 
 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

You could try to use UNION() function

SUMX(UNION(VALUES('Table'[Column1]),VALUES('Table'[Column2])),[measure])

 

Best Regards,

Jay

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous ,

 

You could try to use UNION() function

SUMX(UNION(VALUES('Table'[Column1]),VALUES('Table'[Column2])),[measure])

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , You can use summarize when you have more than one column

 

IF(HASONEVALUE([servername]), [Underutilisation], SUMX(Summarize(Table,[servername],Table[Groupbytwo], "_1", [Underutilisation]),[_1]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

He clearly asked how to use SUMX and VALUES in the same measure.

Anonymous
Not applicable

Hi,

 

The two columns are from different and unrelated tables

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.