Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
gmw gmw is offline
external usenet poster
 
Posts: 1
Default email based on cell input


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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default email based on cell input

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
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
Fill cell colour based on input in another cell Dan Wood[_2_] Excel Worksheet Functions 2 August 20th 09 06:28 AM
How to input pictures automatically based on cell input? bsharp Excel Worksheet Functions 9 May 30th 09 07:16 AM
run macro with input msg based on cell input Janelle S Excel Discussion (Misc queries) 0 January 20th 08 05:23 AM
How do I change the format of a cell based on what I input? Husker87 Excel Worksheet Functions 8 August 19th 05 10:45 PM
data validation to restrict input in cell based on value of cell above that cell NC Excel Programming 2 January 25th 05 07:11 AM


All times are GMT +1. The time now is 05:56 PM.

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"