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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Runicas
Frequent Visitor

Sumx not calculating the grand total

Hi everyone,

First ever post.

I'm struggling to get the right formula for my solution.

I have a calculated column which follows the logic:
Products bought =
IF( A = 0 && B = 1, 1, 0)

I get the correct output:

Product A     1
Product B     2
Product C     1

Client is asking if the product appears just once, show it as 1, not a 2, so it would be like

Product A     1
Product B     1
Product C     1

Since it's a calculated column, i tried to use this formula for a solution:
IF(SUMX('Table','Table'[Products Bought]) >= 1, 1, 0)

Now I get the proper counts, but I can't get to show the result as a GRAND total or SUB Total.

How do I fix this?

Does my logic make sense?

Thank you in advance DAX guru's!

1 ACCEPTED SOLUTION
mlsx4
Super User
Super User

Hi @Runicas 

 

Maybe you can try:

SUMX(VALUES('Table'[Product]),[Measure])

Where [Measure]=IF(SUMX('Table','Table'[Products Bought]) >= 1, 1, 0)

View solution in original post

2 REPLIES 2
mlsx4
Super User
Super User

Hi @Runicas 

 

Maybe you can try:

SUMX(VALUES('Table'[Product]),[Measure])

Where [Measure]=IF(SUMX('Table','Table'[Products Bought]) >= 1, 1, 0)

Runicas
Frequent Visitor

Thank you very much! Worked like a charm 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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