Counting Once a Day a item in a list

Chrisa1956

New Member
Joined
Feb 27, 2017
Messages
5
Hello All,

I need to figure out how to count the Name column, if it existing in a list, but only once per day.

Below is the first set of data. The count is the result I am trying to get to.

NameDateQTYCount
mjones07/30/20192.000
fjones07/30/20197.501
fjones07/30/20193.500
gjones07/30/20195.001
gjones07/30/20193.500
sjones07/30/20192.501

<tbody>
</tbody>

The list it needs to check. This is in another sheet.

Name
fjones
gjones
sjones

<tbody>
</tbody>
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Hello All,

I need to figure out how to count the Name column, if it existing in a list, but only once per day.

Below is the first set of data. The count is the result I am trying to get to.

NameDateQTYCount
mjones07/30/20192.000
fjones07/30/20197.501
fjones07/30/20193.500
gjones07/30/20195.001
gjones07/30/20193.500
sjones07/30/20192.501

<tbody>
</tbody>
something like =IF(COUNTIF($A$2:A2,A2)>1,0,1) maybe, if i'm understanding correctly
assuming name is in A column
not sure about the date qualifier tbh
 
Last edited:
Upvote 0
Welcome To Mr Excel forum

Maybe
D2 copied down
=IF(COUNTIF(Names,A2),--(COUNTIFS(A$2:A2,A2,B$2:B2,B2)=1),0)

where Names is a named range that contains the names of interest

M.
 
Last edited:
Upvote 0
Welcome To Mr Excel forum

Maybe
D2 copied down
=IF(COUNTIF(Names,A2),--(COUNTIFS(A$2:A2,A2,B$2:B2,B2)=1),0)

where Names is a named range that contains the names of interest

M.

That worked. I have beat my head against the wall. Try to get this to work.

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

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