Sheet1:
cell p2 holds the ID
cell y2 holds the listed start date
cell z2 holds the listed start date from sheet2
cell aa2 holds project start compare
Sheet2:
cell a2 holds the ID
cell e2 holds the start date
I used a =VLOOKUP(p2,Sheet2!$a$2:$e$9999,5,FALSE) to populate the listed start date from sheet2 into sheet1
I now want to do a comparison. In cell aa2 if y2=z2 then print "Match" else "Incorrect". What is happens is that dates that
have a timestamp ( ie 1/6/2008 8:00:00 AM) give me a match if y2=z2. However if y2 has a timestamp and z2 does not I get an Incorrect marker even though y2 and z2 have the same value. How can I correct this issue? Is there a macro or some other procedure I can develop?
cell p2 holds the ID
cell y2 holds the listed start date
cell z2 holds the listed start date from sheet2
cell aa2 holds project start compare
Sheet2:
cell a2 holds the ID
cell e2 holds the start date
I used a =VLOOKUP(p2,Sheet2!$a$2:$e$9999,5,FALSE) to populate the listed start date from sheet2 into sheet1
I now want to do a comparison. In cell aa2 if y2=z2 then print "Match" else "Incorrect". What is happens is that dates that
have a timestamp ( ie 1/6/2008 8:00:00 AM) give me a match if y2=z2. However if y2 has a timestamp and z2 does not I get an Incorrect marker even though y2 and z2 have the same value. How can I correct this issue? Is there a macro or some other procedure I can develop?