Forum Discussion
RyanBainbridge
Jul 21, 2024Copper Contributor
XLOOKUP for multiple lookup ranges
Hello, I'm trying to populate an interactive calendar with dates that a team member will be working. I have been using the XLOOKUP function to do this and can get it working for a single date. Id...
HansVogelaar
Jul 21, 2024MVP
You don't have to insert a new row.
Change the formula in D5 to
=TEXTJOIN(", ", TRUE, FILTER(Sheet1!$E$3:$E$4, BYROW(Sheet1!$B$3:$D$4, LAMBDA(r, ISNUMBER(XMATCH(D4, r)))), ""))
Then fill and copy as before. For dates on which both Chris and John should work, you'll see
Chris, John
in the cell.
RyanBainbridge
Jul 23, 2024Copper Contributor
HansVogelaar Thank you, worked perfectly for what I needed.