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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
TeresaV
Frequent Visitor

If a row is zero the total of the row should be zero

Hi, 

 

I am trying to create a dax formula that shoud do this : 

 

 JanFevMarchAprilMay JuneJulyAugustSeptemberNovDec
CountryA10213654653130000
CountryB34581164543545545650
CountryC787541036655414931
CountryD0234556849656547455121
            
            
            
 JanFevMarchAprilMay JuneJulyAugustSeptemberNovDec
Region A (Country A+B)3503242995007670000
Region B(Country C+D)098450687162011957864152

 

 

How can I replicate this? 

@amitchandak @parry2k @v-alq-msft 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Picture1.png

 

https://www.dropbox.com/s/fv0amwpjj12o9lz/teresav.pbix?dl=0 

 

 



Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



View solution in original post

5 REPLIES 5
parry2k
Super User
Super User

@TeresaV not sure what you mean? Can you be clear on your requirements in one go? Sorry, but it is hard to answer if you are going to change the question. 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

sorry , it is the same problem but with another column to filter. 

 

Basically I want to achieve the same result as before :

TeresaV_0-1625153464127.png

 

but instead of having just the value I want to filter the value per source... if it is 0 in country A and 25 in country B (Country A+ country B= region A) then region A will be 0. 

did you understood? 

TeresaV
Frequent Visitor

What if I have another column , named source:

TeresaV_0-1625152409005.png

 

and I want to filter for sorce A only??

@parry2k @Jihwan_Kim 


parry2k
Super User
Super User

@TeresaV I have further enhanced @Jihwan_Kim file (new pbix file is attached) and the Total shows up correctly.

 

here is the image:

 

parry2k_0-1625067077851.png

 

and measure used to fix the total:

 

Result = 
SUMX ( 
    SUMMARIZE ( 
        Data, 
        Months[Month], 
        Countries[Region], 
        "@Result", 
        VAR _valuelist = VALUES ( Data[Value] )
        RETURN
        IF ( 0 in _valuelist, 0, CALCULATE ( SUM ( Data[Value] ) ) ) 
    ), 
    [@Result] 
)

 

Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Jihwan_Kim
Super User
Super User

Picture1.png

 

https://www.dropbox.com/s/fv0amwpjj12o9lz/teresav.pbix?dl=0 

 

 



Microsoft MVP



If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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