Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have created a spreadsheet and I'm wondering if it possible to set the
spreadsheet up so that it emails me when a user changes it? Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi XFILES
You can set a boolean and use the beforesave event to mail maybe Copy this In the thisworkbook module Public OkToSend As Boolean Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If OkToSend = True Then MsgBox "call your macrio here" OkToSend = False End If End Sub Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) OkToSend = True End Sub For mail code look here http://www.rondebruin.nl/sendmail.htm -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "XFILES" wrote in message ... I have created a spreadsheet and I'm wondering if it possible to set the spreadsheet up so that it emails me when a user changes it? Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the subscription featu
http://office.microsoft.com/en-us/he...701161033.aspx P. -- Overcome Sales Barriers http://salesbarriers.typepad.com/ "Ron de Bruin" wrote: Hi XFILES You can set a boolean and use the beforesave event to mail maybe Copy this In the thisworkbook module Public OkToSend As Boolean Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If OkToSend = True Then MsgBox "call your macrio here" OkToSend = False End If End Sub Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) OkToSend = True End Sub For mail code look here http://www.rondebruin.nl/sendmail.htm -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "XFILES" wrote in message ... I have created a spreadsheet and I'm wondering if it possible to set the spreadsheet up so that it emails me when a user changes it? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Send multiple email in Excel | Excel Discussion (Misc queries) | |||
triggering an email alert from within a spreadsheet based upon a d | Excel Discussion (Misc queries) | |||
Excel will not let me send via email | Excel Discussion (Misc queries) | |||
How do I automatically send daily email of updated Excel workbook. | Excel Discussion (Misc queries) | |||
How do I cancel sending a spreadsheet by email? | Excel Discussion (Misc queries) |