Can I use 2 data sources from the same Workbook in one formula?

Staci

New Member
Joined
Oct 16, 2013
Messages
1
I currently have a Workbook with two datasources, "Test Cases", "Defects" (these are generated from an external system so I can't modify or combine the original datasources)

  • The "Test Case" datasource provides information about Test Cases including the Status, The associated Defect number(s), and the associated Project number.


Test Case #Project #StatusAssociated Defect #
11PR12345Fail40202.0001
12PR12345Fail40202.0001,90210.0001
13PR98765Pass
14PR98765Fail12321.0001

<tbody>
</tbody>


  • The "Defect" datasource provides information about Defects including the Defect number, the Impact and the associated Project number.


Defect #ImpactAssociated Project #
40202.0001CriticalPR12345
90210.0001HighPR12345
12321.0001MediumPR98765

<tbody>
</tbody>

I can not deduce a formula to Count the Quantity of test cases that are Failing WHERE the impact of the associated Defect(s) is limited to High and Critical ONLY. (I do not want to include in my count the test cases that are failing, WHERE the impact of the associated Defect(s) are either Medium or Low).

I've gotten as far as a formula for counting the total number of test cases that Fail

  • =Countif(Test Cases!C2:C25,Fail)

I can break that down into the total number of test cases that fail per Project
  • =Countifs(Test Cases!C2:C25,Fail,B2:B25,PR12345)

I just do not know how to combine the information from the Defect datasource to limit the count.

Also note the format of the Associated Defect(s) on the Test Case data source...if more than one Defect is associated to the same Test Case then all of the associated Defects are listed in the same cell, comma-delimited.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.

Forum statistics

Threads
1,214,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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