Forum Discussion
mtwelve
Dec 21, 2022Copper Contributor
Formatting the output of a SPILL - Is it possible?
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...
- Dec 21, 2022
You can use TEXTJOIN to combine the result of your FILTER formula:
=TEXTJOIN(", ", TRUE, FILTER(...))
HansVogelaar
Dec 21, 2022MVP
You can use TEXTJOIN to combine the result of your FILTER formula:
=TEXTJOIN(", ", TRUE, FILTER(...))
- mtwelveDec 21, 2022Copper ContributorAmazing. Thank you. This will be incredibly helpful.