Requesting Formula Help

manojs1234

New Member
Joined
Jun 2, 2019
Messages
2
Hello,

I have a table with 2 columns (Schedule, Item) of data and I would like to create a formula under the 3rd column using under the criteria below.

Criteria : If Column A (Schedule) shows "Yes" and if there are multiple occurrences of the same value on Column B (Item) that satisfies the condition "Yes" (in this case value 123456), I would like to populate a comment "Check" under the 3rd Column.

I tired using COUNTIF to find the duplicates, but my knowledge does not go far enough to add condition to look for "Yes" under Column A. Can anyone help?

Thank you

Schedule Item Comment
Yes 123456 Check
Yes 876543
Yes 123456 Check
Yes 345678
No 123456
No 345678
Yes 123456 Check
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Welcome to the Board.

How about?

Excel 2012
ABC
1ScheduleItemComment
2Yes123456Check
3Yes876543
4Yes123456Check
5Yes345678
6No123456
7No345678
8Yes123456Check

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet7

Worksheet Formulas
CellFormula
C2=IF(AND(A2="yes",COUNTIFS(A:A,"yes",B:B,B2)>1),"Check","")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,051
Messages
6,122,872
Members
449,097
Latest member
dbomb1414

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