Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, New to the forum. I have a simple tracking spreadsheet that i shared by a number of users. When they enter a date in a cell in particular column, I'd like to have that generate an automatic emai notice to me that their task is complete. I've tried recording a macro but I'm not having any luck. Should this be done in visual basic? Anyon have a template or tip on the commands to accomplish this? Thanks -- gm ----------------------------------------------------------------------- gmw's Profile: http://www.excelforum.com/member.php...fo&userid=3115 View this thread: http://www.excelforum.com/showthread.php?threadid=50820 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi gmw
You can use the change even to run the macro Example for A1 Private Sub Worksheet_Change(ByVal Target As Range) If Not Application.Intersect(Range("A1"), Target) Is Nothing Then If IsDate(Target.Value) Then YourMacroName End If End If End Sub See this site for more info http://www.cpearson.com/excel/events.htm Which mail program do you use ? On this page you find a few examples to send a text http://www.rondebruin.nl/mail/change.htm -- Regards Ron de Bruin http://www.rondebruin.nl "gmw" wrote in message ... Hi, New to the forum. I have a simple tracking spreadsheet that is shared by a number of users. When they enter a date in a cell in a particular column, I'd like to have that generate an automatic email notice to me that their task is complete. I've tried recording a macro, but I'm not having any luck. Should this be done in visual basic? Anyone have a template or tip on the commands to accomplish this? Thanks! -- gmw ------------------------------------------------------------------------ gmw's Profile: http://www.excelforum.com/member.php...o&userid=31157 View this thread: http://www.excelforum.com/showthread...hreadid=508203 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Fill cell colour based on input in another cell | Excel Worksheet Functions | |||
How to input pictures automatically based on cell input? | Excel Worksheet Functions | |||
run macro with input msg based on cell input | Excel Discussion (Misc queries) | |||
How do I change the format of a cell based on what I input? | Excel Worksheet Functions | |||
data validation to restrict input in cell based on value of cell above that cell | Excel Programming |