Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I think you are asking for a lot of different things. first have you visited Ron Debruin's web article(s) on E-Mail? 'Ron's Excel Tips' (http://www.rondebruin.nl/tips.htm) for looping through the employees who work for the same manager se the find and findNext method like below Sub GetEmployees() VBA Code: -------------------- ManagerEmail = " Set c = Columns("A").Find(what:=ManagerEmail, _ LookIn:=xlValues, lookat:=xlWhole) If c Is Nothing Then MsgBox ("Cannot find Manager : " & ManagerEmail) Exit Sub Else FirstAddr = c.Address Do MsgBox ("Employee : " & c.Offset(0, 1)) Set c = Columns("A").FindNext(after:=c) Loop While Not c Is Nothing And c.Address < FirstAddr End If End Sub -------------------- -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=188874 http://www.thecodecage.com/forumz/chat.php |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Macro how to create email link for the email addresses in aRange or Selection | Excel Worksheet Functions | |||
Sending to email different email address based on cell value | Excel Programming | |||
Macro for Email - Sending to email addresses in cell | Excel Programming | |||
How do I create an email macro to auto fill the email? | Excel Discussion (Misc queries) | |||
Email Range of Cell Content to create subject and body from link | Excel Programming |