Hello,
Does anyone know how to pull multiple rows of data into one cell?
I'd like to build a cell that look-up the date "05/20/20" and brings all the values into one cell.
I'm thinking vlookup:
=VLOOKUP("5/20/20", {Test Range 1}, 2, false) + " - " + VLOOKUP("5/20/20", {Test Range 1}, 3, false) + " - " + VLOOKUP("5/20/20", {Test Range 1}, 4, false) + " - " + VLOOKUP("5/20/20", {Test Range 1}, 5, false)
But that gives me only the first line:
"02:30 PM - 02:50 PM - Cats in love - Wiskeys"
Any way to also pull the data for so that the cell can read:
"
02:30 PM - 02:50 PM - Cats in love - Wiskeys
02:50 PM - 03:10 PM - Cat nip - Meowton
03:10 PM - 04:00 PM - Q&A - All
"
?
Thank you in advance!
L