Here's my dilemma. I have 3 columns C (Date), D (Text), E (Text)
I need to populate all occurrences where C is within 40 days and either D or E match the target text F7. Where D matches, I need to return E as a result, and vice versa. I need the results to appear in separate cells on the same row. If possible in chronological order! If that's impossible, the text results of D in order followed by E would be fine.
I have the following in the first cell of the results row:
That works fine. But I'm lost when it comes to returning the second result of an INDEX,MATCH function!?
Any ideas, input or solutions would be very much appreciated, thanks
I need to populate all occurrences where C is within 40 days and either D or E match the target text F7. Where D matches, I need to return E as a result, and vice versa. I need the results to appear in separate cells on the same row. If possible in chronological order! If that's impossible, the text results of D in order followed by E would be fine.
I have the following in the first cell of the results row:
Code:
=IF((INDEX(Fixtures!$C:$C,MATCH($F7,Fixtures!$D:$D,0))-TODAY())<=40,INDEX(Fixtures!$E:$E,MATCH($F7,Fixtures!$D:$D,0)),"")
That works fine. But I'm lost when it comes to returning the second result of an INDEX,MATCH function!?
Any ideas, input or solutions would be very much appreciated, thanks