Dec 21 2022 07:10 AM
I've written a FILTER formula to retrieve values from a table.
There is more than one results so I am receiving it as a SPILL.
Is it possible to return all the values to show in a single cell?
Can you adjust the format of the SPILL output in that single cell?
I'd like to create a delimited list (ideally CSV) of all the results and for them to be returned to a single cell.
Dec 21 2022 07:45 AM
SolutionYou can use TEXTJOIN to combine the result of your FILTER formula:
=TEXTJOIN(", ", TRUE, FILTER(...))
Dec 21 2022 08:08 AM