Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Ho to get notified by getting mail when any changes done in excel

I would like to get informed by getting mails to ma, if any of the values of
the cells are changed
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 267
Default Ho to get notified by getting mail when any changes done in excel

You can send an email by th following method you could put this as a
selection change but you would end up with a lot of emails.
If you want to trigger it when a specific cell or range are changed you
could compare each cell in the range on each selection change.
My preference would be to send email as a save event.
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.To = "Jimmy Page"
.Subject = "Changes to workbook"
.Body = "Changes have been made to workbook 1"
.Send
End With
On Error GoTo 0
Set OutMail = Nothing

Ron De Bruin has stacks of great stuff on email.
http://www.rondebruin.nl/mail/problems.htm

"Deep" wrote:

I would like to get informed by getting mails to ma, if any of the values of
the cells are changed

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I do an e-mail mail merge using an Excel spreadsheet? Gretchen Excel Worksheet Functions 0 July 19th 09 05:18 PM
E-mail to every e-mail address in an Excel column? MrMan&Fam Excel Discussion (Misc queries) 24 July 19th 06 09:35 AM
Error: cannot load the mail service. Check your mail installation. Brad Bowser Excel Discussion (Misc queries) 0 December 20th 05 10:03 PM
General mail failure when sending e-mail from Excel Adrienne Excel Discussion (Misc queries) 5 November 4th 05 12:59 PM
How can I get notified whenever a certain excel file is updated (. AnnL@work Excel Discussion (Misc queries) 1 January 14th 05 05:16 PM


All times are GMT +1. The time now is 12:33 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"