+ Reply to Thread
Results 1 to 15 of 15

Copy email address in column dependant on another column

  1. #1
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Copy email address in column dependant on another column

    I need huge help! I have programmed a document and taken me months when some of you guys could do it in an hour but I like a challenge! I am now banging my head of my desk so need help because I don't know where to start and even searched formulas so back to VBA.

    I have about 30 sheets where Column J has a list of email addresses in 28 of them! I want to copy all those email addresses to another sheet (DistributionList) only if Column K has the word Yes in the same row.


    Any help would be appreciated. I am not sure even if the code goes in each sheet or the work book - It a question for another time how I did my other coding!

    N1k.

  2. #2
    Forum Expert
    Join Date
    08-28-2014
    Location
    Texas, USA
    MS-Off Ver
    2016
    Posts
    1,796

    Re: Copy email address in column dependant on another column

    It doesn't matter where you put this code, it will run on all the sheets.

    Also, you didn't specify what column on DistributionList you wanted the email address copied to, so adjust ws1.Cells(OpenRow, "A") accordingly. Right now it is set to column A, as indicated by the "A"

    Please Login or Register  to view this content.

  3. #3
    Forum Contributor
    Join Date
    09-30-2013
    Location
    Toronto, ON
    MS-Off Ver
    Excel 2007
    Posts
    229

    Re: Copy email address in column dependant on another column

    This should get you started. There's a couple of ways to make it more dynamic. I haven't tested it.
    Please Login or Register  to view this content.
    If this helped, please click (*) Add Reputation

  4. #4
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    Hi Walruseggman,
    Apologies for not stating which column on DistributionList I wanted but to be honest at this point I don't mind where it goes so long as it goes

    I can read and understand the code mostly which I wanted to do before using. I entered it onto my vba in 'ThisWorkbook" and in "DistributionList" sheet then googled the error message I got but there seems to be so many fixes (tried a couple) that I am unsure what to do and at times what they are talking about!

    Message error: Object doesn't support this property or method. I seem to remember something about this from my time long ago in school but I have no idea and only did the vba basics which my employers seem to think I am a fully qualified programmer now lol

    If you can offer any suggestions to solve my problem, that would be great.

    Thank you for your time.

    Annette

  5. #5
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    Hi Hectop,
    I can also read this code and it makes sense to me but if I hit run my computer goes into freeze and I have to restart the program I have no idea why! I tried a couple of times and at one point I did get a message "Method 'cells' of object_worksheet failed. Again I do not know where to correct this.
    Thanks
    Annette

  6. #6
    Forum Contributor
    Join Date
    09-30-2013
    Location
    Toronto, ON
    MS-Off Ver
    Excel 2007
    Posts
    229

    Re: Copy email address in column dependant on another column

    Can you post a sample worksheet. It'd be easier to debug then.

  7. #7
    Forum Expert
    Join Date
    08-28-2014
    Location
    Texas, USA
    MS-Off Ver
    2016
    Posts
    1,796

    Re: Copy email address in column dependant on another column

    Syntax error on my part; forgot to add Set. Change the ws1 = line of code to read:

    Please Login or Register  to view this content.

  8. #8
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    Hectop, the one I have has client info on it but will cut and past a couple of sheets etc when I am at work tomorrow to let you see. If you have time I would like to see the code you gave me work. I love learning!

  9. #9
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    That does work Walruseggman, thank you! I put the code in ThisWorkbook where I have a Workbook_Open () code. (it just asks to open on certain sheet) It means my distribution list will be updated each time the workbook opens which is good. I do notice I have duplicates and I have tried a couple of different things to put a RemoveDuplicates in the code you supplied but I am getting tired now so will sleep on it till tomorrow.

    I appreciate all the help you guys have given me and will upload a sample book tomorrow Hectop but no laughing at all my other coding efforts

    Thanks, A

  10. #10
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    Sorry I took so long to come back but my little trials of .RemoveDuplicates didnt go too well and I deleted lots of stuff that I had to re do! I have uploaded a sample of what I am doing.

    Thanks

    Spring Registration 2015TestingDuplicates.xlsm

  11. #11
    Forum Expert
    Join Date
    08-28-2014
    Location
    Texas, USA
    MS-Off Ver
    2016
    Posts
    1,796

    Re: Copy email address in column dependant on another column

    Well I'm not sure what kinds of problems you're having or why/how lots of stuff was deleted, but you should be able to put the following code at the end of your Workbook_Open sub:

    Please Login or Register  to view this content.

  12. #12
    Forum Contributor
    Join Date
    09-30-2013
    Location
    Toronto, ON
    MS-Off Ver
    Excel 2007
    Posts
    229

    Re: Copy email address in column dependant on another column

    Simcoe, ON eh. I have friends that live there.

    The attached sheet will consolidate the emails based on what you have. See Module1.
    I added another column in the DistributionList tab which would have the spreadsheet name it came from. I thought you could then create a selection saying which program you want to send the emails for and you could have the logic to send the emails in one place rather than in each individual tab. But I'm not sure if that's the you want to go or not.
    Spring Reg 2015 - TN.xlsm

  13. #13
    Registered User
    Join Date
    10-01-2009
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    22

    Re: Copy email address in column dependant on another column

    I guess I put the RemoveDuplicates in the wrong place, I didn't even notice until another administrator was in the document and there were only a few sheets in there - Oops! Our remote server connection is down (again) but will review what you guys have sent me once I get back on and send the files to there.

    Hectop, it would be so much easier if it was in one place and if I got this working I was going to try changing it for the next one. I do not do enough programming skills and only have my basic course but although I love it, I find it frustrating definitely but too old to go back and do an advanced. I will certainly read your program code and make sense of it before I try it out, thank you. I work in Simcoe, live just outside. I moved from the Scotland UK in 2006

  14. #14
    Forum Contributor
    Join Date
    09-30-2013
    Location
    Toronto, ON
    MS-Off Ver
    Excel 2007
    Posts
    229

    Re: Copy email address in column dependant on another column

    I'll put in some code that will have the email going out of a single module based on program (worksheet) selected. You can look at that and then adapt it for your selection process.

  15. #15
    Forum Contributor
    Join Date
    09-30-2013
    Location
    Toronto, ON
    MS-Off Ver
    Excel 2007
    Posts
    229

    Re: Copy email address in column dependant on another column

    Check out the SendEMail function in Module1. It's basically a copy of yours with a couple of tweaks.
    Sub EMailTest calls the function for testing. You just need to determine how you select which tab should have data sent for.Spring Reg 2015 - TNP v2.xlsm

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Extracting email chain email address and converting to Excel column
    By Leah_Hael in forum Excel General
    Replies: 4
    Last Post: 12-28-2012, 04:05 PM
  2. Vlookup with email address column
    By lamp123 in forum Excel General
    Replies: 1
    Last Post: 06-11-2012, 11:54 AM
  3. [SOLVED] can I copy a column of email addresses, paste into email address?
    By Lizizfree in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 07-20-2006, 05:05 PM
  4. [SOLVED] How to extract email address and place into a new column
    By Inquirer in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 07-06-2006, 04:50 PM
  5. How do you add a parentesis to a column of email address?
    By a_dallas_boy in forum Excel General
    Replies: 2
    Last Post: 02-18-2005, 10:06 AM

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