count new entries from dates

RodrigoFinguer

Board Regular
Joined
Jun 13, 2017
Messages
75
Hi guys, i really need this. I am thinking about more than a month but i can't get it!

I have values (serial numbers) in different dates, i will send a picture for better understanding.

I need to calculate the serial numbers which is new, the values that weren't yesterday in my sheet but it is today. I just know how to do it using dynamic table... there is a way to do it with formulas? Thank you so much!!

In my image, the green values are the same in both days and the blue ones are the new values.
 
Unfortunately I have no idea how to do that.
Hopefully one of the formula folk, will step in & help.
 
Upvote 0

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hi,

Fluff's formula in Post # 4 gives the Correct result of 4 for your sample and description in Post # 10.

Don't know why you're getting 6:


Book1
MNOPQ
2Serial No.Date
3708591/22/20191/24/20194
4847321/22/2019
5634031/22/2019
6757051/22/2019
7552871/23/2019
8895421/23/2019
9696361/23/2019
10703521/23/2019
11708591/24/2019
12847321/24/2019
13886761/24/2019
14753671/24/2019
15708501/24/2019
16770301/24/2019
Sheet506
Cell Formulas
RangeFormula
Q3=SUMPRODUCT(--(COUNTIF(M3:M16,M3:M16)=1)*(N3:N16=P3))
 
Upvote 0
@jtakw
My formula is ignoring a Serial No. if it has occurred any where in the past, whereas the OP only wants to ignore it, if it occurred the day before.
so with this data


Excel 2013/2016
MN
2Serial No.Date
3708591/22/2019
4847321/22/2019
5634031/22/2019
6757051/22/2019
7708501/23/2019
8895421/23/2019
9696361/23/2019
10703521/23/2019
11708591/24/2019
12847321/24/2019
13886761/24/2019
14753671/24/2019
15708501/24/2019
16770301/24/2019
Offer Received




Even though the green cells are duplicate they should be counted as the duplicate was not on the 23rd. Whereas the red cells should not be counted.
 
Last edited:
Upvote 0
Thanks Fluff, so I misunderstood the question.

But if that's the case, would this fix it?


Book1
MNOPQ
2Serial No.Date
3708591/22/20191/24/20196
4847321/22/2019
5634031/22/2019
6757051/22/2019
7552871/23/2019
8895421/23/2019
9696361/23/2019
10703521/23/2019
11708591/24/2019
12847321/24/2019
13886761/24/2019
14753671/24/2019
15708501/24/2019
16770301/24/2019
Sheet506
Cell Formulas
RangeFormula
Q3=SUMPRODUCT(--(COUNTIF(M3:M16,M3:M16)=1)*(N3:N16<>P3-1))


EDIT: think I may still be confused...:confused:
 
Last edited:
Upvote 0
Thanks Fluff, so I misunderstood the question.


Worksheet Formulas
CellFormula
Q3=SUMPRODUCT(--(COUNTIF(M3:M16,M3:M16)=1)*(N3:N16<>P3-1))

<tbody>
</tbody>

<tbody>
</tbody>



EDIT: think I may still be confused...:confused:

It didn't worked... when i used big data the value returned was ALL new values EXCEPT the last day using your formula, so, since I have values from 2nd january it counts ALL new values.

This is how i am doing right now using pivot table:

CellABCDEFGH
1Serial N.22/01/201923/01/201924/01/201925/01/201926/01/2019New Values (day 25/01)New Values (day 26/01)
21017841111
3102756111
4243576111
5875233
6542113111
769764511111
82265441111

<tbody>
</tbody>


I use pivot table, using counting of serial numbers by date, and at the end i just do as follows:

Formula G2 (or any of this column)
Formula H2 (or any of this column)

<tbody>
</tbody>
=if(and(E2=1;D2="");1;0)=if(and(F2=1;E2="");1;0)

<tbody>
</tbody>


This way i can do a graph per day showing how many values i had new, per day, just summing columns G and H.

Obs: sorry for my bad table, i don't know how to customize. Sorry also for my english, I am not fluent.
 
Upvote 0
Ok, I think I figured out what you want and how to get it with an updated formula.

But looking at your most recent post, I don't know if you've changed the formatting of your data, the following works based on the your setup in Post # 3:


Book1
MNOPQ
2Serial No.Date
3708591/22/20191/24/20196
4847321/22/2019
5634031/22/2019
6757051/22/2019
7552871/23/2019
8895421/23/2019
9696361/23/2019
10703521/23/2019
11708591/24/2019
12847321/24/2019
13886761/24/2019
14753671/24/2019
15708501/24/2019
16770301/24/2019
Sheet506
Cell Formulas
RangeFormula
Q3=SUMPRODUCT(--(COUNTIFS(M3:M16,M3:M16,N3:N16,P3-1)=0)*((N3:N16=P3)+(N3:N16=P3-1)))
 
Upvote 0
Worksheet Formulas
CellFormula
Q3=SUMPRODUCT(--(COUNTIFS(M3:M16,M3:M16,N3:N16,P3-1)=0)*((N3:N16=P3)+(N3:N16=P3-1)))

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

<tbody>
</tbody>

Oh my god that worked! You guys are genius!
I don't know if i have to open a new thread... but I would like also, the same logic, count how many serial numbers I have as output, in other words, how many serial numbers I had yesterday that I don't have today anymore. Anyway, I will try to modify your formula to get it.

Thanks so much!!!
 
Upvote 0
You're welcome, glad it worked for you.

2 things.
1st, realized the double-unary ( -- ) is not needed, doesn't hurt, but not needed, Q3 formula.

but I would like also, the same logic, count how many serial numbers I have as output, in other words, how many serial numbers I had yesterday that I don't have today anymore.

2nd, for your latest request, R3 formula:


Book1
MNOPQR
2Serial No.Date
3708591/22/20191/24/201964
4847321/22/2019
5634031/22/2019
6757051/22/2019
7552871/23/2019
8895421/23/2019
9696361/23/2019
10703521/23/2019
11708591/24/2019
12847321/24/2019
13886761/24/2019
14753671/24/2019
15708501/24/2019
16770301/24/2019
Sheet506
Cell Formulas
RangeFormula
Q3=SUMPRODUCT((COUNTIFS(M3:M16,M3:M16,N3:N16,P3-1)=0)*((N3:N16=P3)+(N3:N16=P3-1)))
R3=SUMPRODUCT((COUNTIFS(M3:M16,M3:M16,N3:N16,P3)=0)*((N3:N16=P3)+(N3:N16=P3-1)))
 
Last edited:
Upvote 0
Worksheet Formulas
CellFormula
Q3=SUMPRODUCT((COUNTIFS(M3:M16,M3:M16,N3:N16,P3-1)=0)*((N3:N16=P3)+(N3:N16=P3-1)))
R3=SUMPRODUCT((COUNTIFS(M3:M16,M3:M16,N3:N16,P3)=0)*((N3:N16=P3)+(N3:N16=P3-1)))

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

<tbody>
</tbody>

It worked, although, how can I do the same formula selecting the date from Column "N", returning me 1 for the new values and 0 for not new values?
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,401
Members
448,893
Latest member
AtariBaby

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