tag duplicate dates to display current date.

H

harley

:confused:


in A1:
=IF(SUMPRODUCT(--($B$1:$B1=B1),--($C$1:$C1=C1),--($D$1:$D1=D1),--($E$1:
$E1=E1))>1,"Dup","")


After sorting and using the if statement above I notice that out of th
duplicates tagged, the Dates to the duplicates are different which I
what I wanted.

In another cell I want to display the current date between any the tw
dates duplicate tagged rows.


for example

After sorting with the if statement I finds E1 and E2 and F1 and F2 th
same but G1 and G2 have different dates I would like in Columm B t
display the tag "New Version" in the same row of the newer date th
other blank.

E1 is Invoice 777 F1 is Invoice # 999 G1 is Inv date 09/11/200
"newVer"
E2 is Invoice 777 F2 is Invoice # 999 G2 is Inv date 06/11/2003

Problem is the dates could be any Dates from 2003 to now and are uniqu
to each duplicate.. humm any help???
 
F

Frank Kabel

Hi
not sure, but try:
=IF(SUMPRODUCT(--($B$1:$B1=B1),--($C$1:$C1=C1),--($D$1:$D1=D1),--($E$1:
$E1=E1))>1,"Dup",IF(SUMPRODUCT(--($B$1:$B1=B1),--($C$1:$C1=C1),--($D$1:
$D1=D1))>1,"Newer version",""))

where column E contains the dates
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top