How match duplicate entry

Pizzaman22

New Member
Joined
Apr 18, 2021
Messages
13
Office Version
  1. 365
Hello, I was looking for help on how to match the following
A. B. C.
Address | House Items | Received item
123john_street | Spoon | Yes
123john_street. | Fork. | Yes
123john_street | Knife | Yes
255john_street. | Apron. | No

So, what I need it’s to do is
Only Exact match “123john” so the first (6 characters) and if already the exact “address” took any items from “house items” previously then provide a “yes” or “no” value in the “received item” Column.

Any help would be great! Thanks!
 
It would be best if you can post some sample data.
So do you want the Count for Today Only, or a Total?
Also, I'm not sure if you need to actually list out "Fork", "Spoon", "Knife", etc. as in my formula in Post #12, Unless there may be something Else in Column B you Don't want counted
Your right, I would like all in column B to be counted . Today only please.
Address | Items | Received spoon| date |. # of items
123john_street | Spoon | Yes. | April 18|. 2
123john_street. | Fork. | No |. April 18. 1
123john_street | Knife | No April 18| 1
255john_street. | Spoon. | Yes |april 18| 1
123john_street |.spoon |. Yes |April 18 |2
 
Upvote 0

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
You've changed your setup, so I'm unsure How you want your data, this is my assumption:

Book3.xlsx
ABCDEFGHI
1Received# of Item Today
2AddressItemsSpoonForkKnifeDateSpoonForkKnife
3123john_street SpoonYesNoNo4/18/20212  
4123john_street. ForkNoYesNo4/18/2021 1 
5123john_street KnifeNoNoYes4/18/2021  1
6255john_street. SpoonYesNoNo4/18/20211  
7123john_street spoonYesNoNo4/18/20212  
Sheet908
Cell Formulas
RangeFormula
C3:E7C3=IF($B3=C$2,"Yes","No")
G3:I7G3=IF($B3=G$2,COUNTIFS($A$3:$A$12,LEFT($A3,6)&"*",$B$3:$B$12,G$2,$F$3:$F$12,TODAY()),"")
 
Upvote 0
Today only please.
Today, or 'Same day'?

This is how I've interpreted it, but as before, your example does not match your description in the Yes / No column.
Book1 (version 1).xlsb
ABCDE
1AddressItemsReceivedDate# of items
2123john_street SpoonNo18-Apr2
3123john_street. ForkNo18-Apr1
4123john_street KnifeNo18-Apr1
5255john_street. SpoonNo18-Apr1
6123john_street spoonYes18-Apr2
Sheet5
Cell Formulas
RangeFormula
C2:C6C2=IF(COUNTIFS(A$1:A1,LEFT(A2,6)&"*",B$1:B1,B2,D$1:D1,D2),"Yes","No")
E2:E6E2=COUNTIFS(A$2:A$6,LEFT(A2,6)&"*",B$2:B$6,B2,D$2:D$6,D2)
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,532
Members
449,316
Latest member
sravya

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