excell spreadsheet

S

spenlc

I am attempting to take a spreadshhet of email address a1-a1350 and make them
one string of addresses in the same cell to send out a mass email. Is there a
formula that I can enter to do this all at once or am I going to have to do
them one at a time
 
S

Shane Devenshire

Hi,

My concern is trying to concatenate 1300 email addresses, it may just be too
long.
 
H

Hardeep kanwar

Hi! Try this



Function ConcVertical(rng As Range, joinStr As String) As String
ConcVertical = _
Join(Evaluate("transpose(" & rng.Address(, , , True) & ")"), joinStr) &
"."
End Function

Put in B2
=concvertical(A1:a1350)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top