+ Reply to Thread
Results 1 to 8 of 8

removing aol addresses

Hybrid View

  1. #1
    Registered User
    Join Date
    05-24-2007
    Posts
    73

    removing aol addresses

    hello everyone
    i have an email database in excel and i want to remove the over 400 email addresses by aol. is there a macro that can do this?

  2. #2
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    If you select the range with addresses and run this macro, it may work for you. If it finds a match, it will delete the row.

    Sub RemoveAOLs()
    Dim selRange As Range
    Dim cell As Range
    
    Set selRange = Selection
    
    For Each cell In selRange
      If InStr(1, LCase(cell.Value), "aol.com") > 1 Then cell.EntireRow.Delete
    Next cell
    End Sub

  3. #3
    Registered User
    Join Date
    05-24-2007
    Posts
    73

    thanks!

    thanks for your help!

  4. #4
    Registered User
    Join Date
    04-29-2013
    Location
    Grapevine
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: removing aol addresses

    Hello Kenneth,

    I attempted this and failed.
    I get a Compile error
    and sometimes a code break error
    Any thoughts?

  5. #5
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: removing aol addresses

    TSteel,

    Why not open your own thread? This thread is nearly 5 yrs and its not likely the respondent will reply back on this one.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  6. #6
    Registered User
    Join Date
    04-29-2013
    Location
    Grapevine
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: removing aol addresses

    OK, thank you, arlu1201

  7. #7
    Registered User
    Join Date
    04-29-2013
    Location
    Grapevine
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: removing aol addresses

    Hi arlu,
    I am new at this.
    How do I start a new thread.
    thanks,
    Steel

  8. #8
    Registered User
    Join Date
    04-29-2013
    Location
    Grapevine
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: removing aol addresses

    Hi Arlu,
    I figured out how to post the new thread.
    thanks,
    S

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1