Can emails be automatically generated from Excel?

  • Thread starter Thread starter suek
  • Start date Start date
S

suek

Hello,

I have a spreadsheet of costs, which when the costs for a certain job are in
excess of 10 per cent of the contract price, (which is a calculated cell in
the spreadsheet), then I would like certain people to get automatically
emailled to advise that the contract amount is in excess of what is permitted.

Can this be done in Excel?
 
Yes, it can be done however you need VBA code to do it.
Also it sends the workbook as attachment, so if you just want to send a row
then you have to copy that to a new workbook and then send that workbook...

basic code
Sub SendActiveWorkbook()
ActiveWorkbook.SendMail _
Recipients:="(e-mail address removed)", _
Subject:="Test Subject"
End Sub
 

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

Back
Top