Using excel list to create multiple emails

DavidAC

Board Regular
Joined
Feb 10, 2003
Messages
134
Office Version
  1. 365
Hi,
I have a list of 7000 email addresses in excel. We can only send out to 500 users at a time and it’s time consuming to create multiple emails.
is there a way I can create multiple emails and populate them with batches of 500 email addresses from the excel spreadsheet?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Not sure what version of Excel you are using, but if 365 then you could use the following formula to accumulate 500 email addresses in a single cell in a helper column

=TEXTJOIN("; ",TRUE,OFFSET($A$2,((ROW(A2)-2)*5),0,5,1)) change "5" in this formula to 500 and also adjust the cell references to fit your data

and copy it down 7,000 - 500 = 14 rows. Then you could write code to loop through this list and send emails to the recipients in each cell

Book3
ABC
1Email address
211; 2; 3; 4; 5
326; 7; 8; 9; 10
4311; 12; 13; 14; 15
5416; 17; 18; 19; 20
6521; 22; 23; 24
76 
87 
98 
109 
1110 
1211 
1312 
1413 
1514 
1615 
1716 
1817 
1918 
2019 
2120 
2221 
2322 
2423 
2524 
Sheet1
Cell Formulas
RangeFormula
C2:C25C2=TEXTJOIN("; ",TRUE,OFFSET($A$2,((ROW(A2)-2)*5),0,5,1))
 
Upvote 0

Forum statistics

Threads
1,215,009
Messages
6,122,674
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top