Reputation: 119
I have a pretty long list of numbers that I would like to concatenate for a regex like this:
2323
2352
3432
…
2323|2352|3432
Now, I can obviously use the CONCATENATE
function, but it would still require me to enter each row individually like this:
=CONCATENATE(A1, "|", A2, …)
Is there any way to apply a range together with the splitting character?
Upvotes: 0
Views: 143