Reputation: 4925
I am using: = ImportRange("<key>","B2:B")
ImportRange("<key>","B2:B")
How I get it is:
But how I want it to be is:
into a single cell. Can anyone guide me to achieve this?
Upvotes: 2
Views: 419
Reputation: 201553
How about using JOIN and/or TEXTJOIN?
JOIN
TEXTJOIN
=JOIN(",",ImportRange("<key>","B2:B"))
or
=TEXTJOIN(",",TRUE,ImportRange("<key>","B2:B"))
,