I have a row of cells (A1 - Z1). There is text in only one of the cells. I am trying to come up with a formula that will look across the row and return only the text that is found in the populated cell.
Ex:
A B C D
1 Dog
2 Cat
3 Bird
4 Frog
I have a row of cells (A1 - Z1). There is text in only one of the cells. I am trying to come up with a formula that will look across the row and return only the text that is found in the populated cell.
Ex:
A B C D
1 Dog
2 Cat
3 Bird
4 Frog
Assuming the others are blank and we're definitely talking strings (not numbers)
=LOOKUP(REPT("Z",255),A1:Z1)
if not, ie nulls, then you could try
=INDEX(A1:Z1,MATCH("*?",A1:Z1,0))
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks