How to workout the error rate or percentage of a spreadsheet using a specific value as reference?

Sampoline

New Member
Joined
Dec 2, 2020
Messages
24
Office Version
  1. 2013
Platform
  1. Windows
I want to be able to calculate the rate/percentage of error. I have 3 sheets: Master, Co-Master and ReDo.

Both the Master and Co-Master sheets have a total time column (J) to give the total time a user has taken to complete a task. The ReDo sheet is solely to record issues with the Master or Co-Master. So if an entry in either sheet needs to be assessed and fixed for an issue, then the total time column in the ReDo sheet is filled.

Now the ReDo sheet has another column (E) that is data validated as a list, with options: 'Master' and 'Co-Master' referenced. So when I select "Master" and then fill out my total time, that will count as an error in the Master and vice versa with Co-Master.

Essentially I want my formula(s) to give me:

If the 'ReDo' sheet column E has Master selected then count the number of cells in column J that have a value in them and divide it by the same in sheet 'Master'

I tried the following formula:

Excel Formula:
=IF(ReDo!E3:E100000="Master",COUNTIF(ReDo!J3:J100000,"?*")/SUMPRODUCT((Master!J2:J100000<>"")+0),"")

But was met with a #VALUE error. Any ideas?
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about:

=SUMPRODUCT(--(Redo!E3:E100000="Master"),--(Redo!J3:J100000<>""))/SUMPRODUCT(--(Master!J2:J100000<>""))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top