nth value in an array formula

B

Babymech

I currently have an array formula that reads
{=IF(MilestoneDates=$D$31;Tasks;"")}

What this does is that it checks through my milestone dates and sees if they
are equal to the next Group Meeting date ($D$31) - if they are, the formula
returns the associated Task. The problem is I only know how to use this to
show the first such result. What I want to be able to do is return, for
example, all five tasks with this milestone date, on separate rows. The tasks
are all text values unfortunately, which means I can't use BIG or SMALL
unfortunately. Any ideas?
 
B

Babymech

Thanks - that did help indeed, but as soon as I got it to work another
question popped up: now I want to do the same with multiple criteria. I
assumed that it wouldn't be harder than using:

{=IFERROR(INDEX(Tasks;SMALL(IF(AND(MilestoneDates>D31-6;MilestoneDates<=D31);ROW(MilestoneDates));ROW(1:1))-3);"")}

But that returns nothing. How would I go about setting it up so that the
date it checks is between two values, or bring in another criteria to bear?
 
B

Babymech

Never mind - I think I got it, by using multiplication instead of an AND
formula. Thanks!
 

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

Similar Threads


Top