• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

VBA snippet to add ";" end of each email id from a cell

Hi,

My requirement is to send an email notification to a group of users directly from the excel framework. Presently I've the below code;
With OutMail
.To = Range("E7").Value
.CC = "tkar@outlook.com"
.BCC = ""
.Subject = "Notification from RA tool"
.HTMLBody = RangetoHTML(Rng)
.Display
End With

I have a list of user email IDs populating in few cells & that needed to be added with a ";" at the end of each email addresses. Can anyone please help me with a vba snippet to loop column"N" get email ID & concat with ";" and add in range"E7" ?

Thanks in advance. Please see the attached file.
 

Attachments

  • email to a group.xlsm
    19.9 KB · Views: 6
Back
Top