IF Function Formula Help

VEROSSA_X

New Member
Joined
Jun 12, 2015
Messages
2
Hello,
I need some help writing a formula the will help me determine if an employee is qualified on a given task.

Basically, search employee names in A:A, look for the corresponding task number in B:B, and C:C contains a completion date.

I've been combining the IF and AND functions with some results, but it will not seem to find the task number in B:B.

Currently using (=IF(AND(A:A="Doe, John",B:B="024.001.006",C:C>1),"yes","no")

Also, not sure if it matters, it's searching through 17K rows of data.

Thank you for your help.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try

=IF(COUNTIFS(A:A,"Doe, John",B:B,"024.001.006",C:C,"<>"),"yes","no")
 
Upvote 0
=IF(SUMPRODUCT(--(A1:A17000="Doe, John"),--(B1:B17000="024.001.006"),--(C1:C17000>1)),1,0)
 
Upvote 0

Forum statistics

Threads
1,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

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