Use array to return array of values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Thanks for taking the time to read my quesiton.

I would like my formula to check one row of data and where true, return all
the values in a second row.
A B C D E F
1 Bob Judy Frank Hector Jill Betty
2 Yes No No Yes Yes No

Formula:
={IF(A2:F2="No",A1:F1,"")}

I would like to see:
Judy Frank Betty in one cell.

Can I do that?

Thanks,

Brad
 
Try this:

=IF(A2:F2="No",A1&" "&B1&" "&C1&" "&D1&" "&E1&" "&F1,"")

Assuming you want a space between the names. If not jus put & betwee
cell names
 

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

Back
Top