Forum Discussion
bmaroni
Jan 18, 2022Copper Contributor
XLOOKUP #VALUE! error
I am new to XLOOKUP. I am trying to lookup a value from spreadsheet A on spreadsheet B in order to find a value in a column associated with that value on Spreadsheet B. My current formula that is not...
- Jan 19, 2022
bmaroni As a variant, using FILTER in stead of XLOOKUP
=FILTER(Domains!K:K,(Domains!A:A=E6)+(Domains!B:B=E6))
Riny_van_Eekelen
Jan 19, 2022Platinum Contributor
bmaroni As a variant, using FILTER in stead of XLOOKUP
=FILTER(Domains!K:K,(Domains!A:A=E6)+(Domains!B:B=E6))
- PeterBartholomew1Jan 19, 2022Silver Contributor
This is just playing. Riny_van_Eekelen 's formula followed by a couple of insider beta variants
=FILTER(K,(A=v)+(B=v)) = FILTER(K, BYROW(AB, LAMBDA(R,OR(R=v)) ) ) = BYCOL(AB, LAMBDA(C, XLOOKUP(v,C,K,"")) )
My defined names are not too descriptive but there was a reason for that.
- bmaroniJan 19, 2022Copper ContributorLoved how clean this was Riny! I will definitely find myself using this for future iterations.