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
lotus22
Helper III
Helper III

Measure not working as intented

I have the following calculation and the table. For some reason, LO is not showing on for FTT% by Weld. I know why because the Fail calculation is zero. I do not how to show it on the graph as red because the weld has failed.

 

Part NumberManufacturing Date:Manufacturing Time:F/O, M/O, L/O, Adjustment:Weld NumberPass/Failweeknumber     
ABC5/9/20211:00 PMMOWELDAPass20     
ABC5/9/202110:00 PMLOWELDAPass20     
XYZ5/9/202110:00 PMLOWELDAFailed20     
XYZ5/9/20214:20 AMAdjustmentWELDAPass20     
XYZ5/9/20211:00 PMMOWELDAPass20     
            
Measures           
 Pass = calculate(count('Attribute Data'[Weld Number]),'Attribute Data'[Pass/Fail]="Pass")     
 Fail = calculate(count('Attribute Data'[Weld Number]),'Attribute Data'[Pass/Fail]="Failed")     
 FTT% By Welds = (Divide([Pass],([Pass]+[Fail])))       
 color = if([FTT% By Welds]<1,"Red","Green")       
            

 

As you can see below LO is not showing up on the graph for Weld "Weld A" and Part number XYZ

lotus22_0-1620690800734.png

 

 

1 ACCEPTED SOLUTION
nilimarodrigues
Helper III
Helper III

Hello,

 

What if you update your FTT% By Welds formula to below:

 

FTT% By Welds = if(Divide([Pass],([Pass]+[Fail]))=0,0.00001,Divide([Pass],([Pass]+[Fail])))
 
Basically, you are giving a dummy value 0.00001 in case the division is going to result in value 0. That way, LO can be plotted on the chart:
 
nilimarodrigues_0-1620693193466.png

 

Kindly give Kudos if my reply helps!

 

Thanks

View solution in original post

1 REPLY 1
nilimarodrigues
Helper III
Helper III

Hello,

 

What if you update your FTT% By Welds formula to below:

 

FTT% By Welds = if(Divide([Pass],([Pass]+[Fail]))=0,0.00001,Divide([Pass],([Pass]+[Fail])))
 
Basically, you are giving a dummy value 0.00001 in case the division is going to result in value 0. That way, LO can be plotted on the chart:
 
nilimarodrigues_0-1620693193466.png

 

Kindly give Kudos if my reply helps!

 

Thanks

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.

Top Solution Authors