I have the following formula which is working:
=SUMPRODUCT(--(Sheet2!D:D=Sheet1!B2),(--(Sheet2!F:F="Red")))
I want to add in another argument to say that sheet 2 column L must be greater than today. How do I do this?
Thanks
Many thanks. Works well.
If I want to copy the formula to another column to effectively do the same but for dates in the past, what do I replace?...
I just really want the same formula as before but instead of looking at dates in the future, I want to look at dates prior to today.
=COUNTIFS(Sheet2!D:D,B2,Sheet2!F:F,"Red",Sheet2!L:L,">"&TODAY())
Thanks again.