Auto Email when cells in range are edited
Closed
Iconyx
-
May 23, 2010 at 09:26 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 25, 2010 at 06:05 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 25, 2010 at 06:05 PM
Related:
- Auto Email when cells in range are edited
- Grand theft auto v free download no verification for pc - Download - Action and adventure
- How to stop auto refresh in facebook app - Guide
- Auto download mms when roaming - Guide
- Grand theft auto iv download apk for pc - Download - Action and adventure
- No email no password - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 25, 2010 at 06:05 PM
May 25, 2010 at 06:05 PM
On a very highlevel. the reason is that you cannot have two similar functions. If range is different you can call the function with parameter. Some thing like
If this does not answer, could you please upload a sample file with sample data etc on some shared site like https://authentification.site , http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee.
Sub Send_Range(myRange1 as String, myRange2 as String) ' Select the range of cells on the active worksheet. ActiveSheet.Range(myRange1 , myRange2 ).Select ' Show the envelope on the ActiveWorkbook. ActiveWorkbook.EnvelopeVisible = True ' Set the optional introduction field thats adds ' some header text to the email body. It also sets ' the To and Subject lines. Finally the message ' is sent. With ActiveSheet.MailEnvelope .Introduction = "This is a copy of your current schedule" .Item.To = "name@email.com" .Item.Subject = "Schedule Change" .Item.Send End With End Sub
If this does not answer, could you please upload a sample file with sample data etc on some shared site like https://authentification.site , http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee.