Formula Help : return multiple values

RattlingCarp3048

Board Regular
Joined
Jan 12, 2022
Messages
166
Office Version
  1. 365
Platform
  1. Windows
For some reason I cannot wrap my head around this one. Can someone help put together a formula to look up a name and return multiple values? Would prefer to stick with a formula and not VBA. Essentially i need to look up the name in column A and return the header name if the value in E:AB is not 0. in this example look for the name "Suzie Q" and return the header names "Referring Location" & "Date of Collection". There may be one return or 7 or 8 returns.

1658350038081.png
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Maybe something like this:
Book1
ABCDEFGHI
1NameHeading1Heading2Heading3Heading4Look UpSue
2Bill12Heading2Heading4
3Sue52
Sheet2
Cell Formulas
RangeFormula
H2:I2H2=FILTER($C$1:$F$1,INDEX($C$2:$F$3,MATCH(I1,$A$2:$A$3,0),0)>0)
Dynamic array formulas.
 
Upvote 0
Maybe something like this:
Book1
ABCDEFGHI
1NameHeading1Heading2Heading3Heading4Look UpSue
2Bill12Heading2Heading4
3Sue52
Sheet2
Cell Formulas
RangeFormula
H2:I2H2=FILTER($C$1:$F$1,INDEX($C$2:$F$3,MATCH(I1,$A$2:$A$3,0),0)>0)
Dynamic array formulas.
made a small edit but this gave me the foundation. Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,243
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top