INDEX MATCH with two columns of text?

NJS1982

Board Regular
Joined
Sep 24, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Hi all, hope somebody can help.
I have two columns of text for each record (risk):
- Column F is a score (Red, Amber, Green)
- Column L is a Status (To Begin, On hold, In Progress, Completed, Cancelled)

I want to put in a formula that will count the number of Reds that are NOT Completed or Cancelled (i.e. how many risks are outstanding/live and still classed as Red).

I tried mixing in a number of COUNTIF and COUNTA formulas, but it only amalgamated all results...I guess I have to do some sort of Index formula, but I can't figure it out...?
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try

=SUMPRODUCT((F1:F1000="Red")*(L1:L1000<>"Completed")*(L:L1000<>"Cancelled"))
 
Upvote 0
Hi, thanks, I tried this and am getting a figure of 1, when I have 'Red' appearing in both F65 and F66, not 2?

=SUMPRODUCT((F64:F104="Red")*(L64:L104<>"Completed")*(L64:L104<>"Cancelled"))
 
Upvote 0
L65 and L66 need to be NOT Completed and NOT Cancelled


F column being Red doesnt count on its own as you specified in your original description
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,581
Messages
6,125,658
Members
449,247
Latest member
wingedshoes

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