Formula for coinciding columns...

S

Schwimms

I have 3 columns, the first one has project numbers, the second one has
dates, and the third has my formula. What I want the formula to do is for any
project number that is the same in column 1 and has all dates filled in for
those projects to show "complete" in the third column. Then if there are
projects with the same number but there are some blanks in the dates, then
the third row will return incomplete. Ex:

Projects Dates Status
444 1/1/08 Complete
444 1/3/08 Complete
444 2/5/08 Complete
554 Incomplete
554 3/7/07 Incomplete
554 Incomplete
 
T

T. Valko

Try this:

=IF(SUMPRODUCT(--(A$2:A$7=A2),--(B$2:B$7<>""))=COUNTIF(A$2:A$7,A2),"Complete","Incomplete")

Copy down as needed
 
D

David Biddulph

=IF(COUNTIF(A$2:A$7,A2)=SUMPRODUCT((A$2:A$7=A2)*(B$2:B$7<>"")),"Complete","Incomplete")
 
S

Schwimms

WOW Wow Weee Wow!

That worked thank you!

T. Valko said:
Try this:

=IF(SUMPRODUCT(--(A$2:A$7=A2),--(B$2:B$7<>""))=COUNTIF(A$2:A$7,A2),"Complete","Incomplete")

Copy down as needed
 

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