cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
aaragon0902
Frequent Visitor

SUMX and COUNTAX Zeros

I'm trying to get consistent blank or zeros in the matrix below.  As shown below, # SLA Met, # SLA Breach show zeros but Excep shows blanks.

 

Below are the measures I am using:

 

# SLA Met=

SUMX(task_sla,[RAW - Count SLA Met] + [Breach Exceptions])

 

# SLA Breach=

SUMX(task_sla,[RAW - Count SLA Breach]) - SUMX(task_sla,[Breach Exceptions])

 

Excep= COUNTAX(task_sla,task_sla[dv_u_breach_code])

aaragon0902_2-1675809020064.png

 

I would like to show zeros in the Excep column where there are blanks.  I have tried adding + 0 at the end but then it shows ALL Region/SLA/INC#, even those that have zero # SLA Met and # SLA Breach. 

 

So really, I'd like to show zeros instead of in the Excep columns only if # SLA Met or # SLA Breach have values. 

 

Hope that makes sense.  If anyone can assit I'd be greatly appreciative. 

 

Thanks! 

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @aaragon0902 ,

 

Try the following code:

Excep= IF( [# SLA Met] <> Blank() || [# SLA Breach] <> Blank() ,COUNTAX(task_sla,task_sla[dv_u_breach_code])+ 0)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @aaragon0902 ,

 

Try the following code:

Excep= IF( [# SLA Met] <> Blank() || [# SLA Breach] <> Blank() ,COUNTAX(task_sla,task_sla[dv_u_breach_code])+ 0)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi @MFelix ,

 

This measure worked perfectly for me, thank you!!

 

I haven't used IF statement very much in DAX, this is great to have in the back pocket. 🙂 

 

aaragon0902_0-1675872634494.png

 

Helpful resources

Announcements
T-Shirt Design Challenge 2023

Power BI T-Shirt Design Challenge 2023

Submit your creative T-shirt design ideas starting March 7 through March 21, 2023.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors