Forum Discussion
Need help Complex Look Up Formula
- Apr 17, 2023
benross94 Your formula is working fine to me. What error do you get? You may simplified the formula using nested FILTER() function. Try-
=TOROW(FILTER('TRUCK CREWS'!$B$4:$B$19,FILTER('TRUCK CREWS'!$C$4:$P$19,'TRUCK CREWS'!$C$3:$P$3=E2)=D2))By the way, what is your excel version?
SergeiBaklan , thank you for the continued help. I need assistance with a very similar formula, but for some reason when I tried you use your formula you create in a new tab with slightly different cell references, it doesn't work, even if I try to change the cell references in the formula. In the tab "Res Donation", are you able to create a formula that once again pulls the names of all people on a given truck (column I) on a given date (column F) in the tab "Res Donation", starting in column O? See file attached.
Thank you!
benross94
That's significantly different data structure compare to previous sample. Perhaps like this
=IFERROR(
INDEX(
'TRUCK CREWS'!$B$4:$B$23,
AGGREGATE(
15,
6,
(ROW('TRUCK CREWS'!$B$4:$B$23) - ROW('TRUCK CREWS'!$B$3)) /
( INDEX( 'TRUCK CREWS'!$E$4:$R$23, 0, MATCH($F15, 'TRUCK CREWS'!$E$3:$R$3, 0) ) = $I15 )*($I15 <> ""),
COLUMN() - COLUMN($N$1)
)
),
""
)
Please check in attached.
- SergeiBaklanJun 02, 2023Diamond Contributor
benross94 , you are welcome
- benross94Jun 02, 2023Copper ContributorThank you!