+ Reply to Thread
Results 1 to 31 of 31

Multiple Macros on Single Sheet

  1. #1
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Multiple Macros on Single Sheet

    Hi, I originally had an excel workbook with multiple sheets and each sheet had a macro to automatically generate an Outlook email if a cell in a certain column contained a specific value. I have to essentially re-create the workbook with all of the information on one sheet, but I would still like the macro to work on multiple columns within the same sheet. However, I cannot figure out how to properly duplicate the macro to continue running on the same sheet for multiple columns. If anyone can please help me with this I would really appreciate it. The code for a single column is below. Thank you in advance!

    Please Login or Register  to view this content.

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    IT could be as simple as extending the columns for the range you are comparing: it all depends on how you want the entry to work....

    Please Login or Register  to view this content.
    Bernie Deitrick
    Excel MVP 2000-2010

  3. #3
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Thank you for your response.

    I could extend the columns out but then I wouldn't be able to distinguish the information that is output in each column reference. I need to have different email outputs for different columns and I don't think that this would allow me to do that right?

  4. #4
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    You could choose the correct email output based on the column, by passing the cell instead of just the row, so change the one line in the event to:

    HTML Code: 
    and then add some logic to your macro, like....

    HTML Code: 

  5. #5
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Unfortunately I don't think that will work either, because ideally I would like to send the email to different recipients as well if the different columns are chosen. If there was a way to just duplicate the macro and have excel run all of them on the same sheet then I think that would be the best way.

    Is there anything that you think can do that?

  6. #6
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    You can do anything in Excel

    I will try to keep it simple so that you can modify the code.

    Try code like this for the event change:

    Please Login or Register  to view this content.
    Then create extra versions of your mail macro, with the correct names and information per your needs:

    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Thank you!

    This looks like it will work, but it doesn't seem like the macro knows where to look now. You removed the "Target Range" of cells. When I tried to place that line back into the code then VBA compiler gave me an error.

  8. #8
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    If the value in the cell is YES then I assumed that it was being entered into a correct place - sometimes a check is needed and sometimes the check is made redundant by the design of the worksheet and the data entry rules. If you really want to check, then add in a line with the entry range, along the lines of:

    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Weird, I changed the value from "Yes" to "YES" and now it worked! Thank you so much, I think this is exactly what I need.

  10. #10
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    It's not weird - VBA text comparisons are case sensitive. We had been using

    If UCase(Target.Value) <> "YES" Then Exit Sub

    which would allow the cell to have Yes yes YES YEs yeS etc. as valid entries, so unless you have Data Validation requiring exactly "Yes" as an entry, leave the UCase as part of the code.

  11. #11
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Hi Bernie,

    I know this is an older thread but I'm hoping maybe you can help me on an additional problem I'm having in this macro. I have an additional column that I want to send an email based off of a cell value and not just on whether the cell says "Yes." I still want to keep all of those "Yes" conditionals, but I want to add in another reference if one particular column has a value > 1,000. So my issue is in finding a way to add in this value based automatic email while still keeping the "Yes" based emails in there.

    Could you possibly help me out in figuring this additional layer out?

    Thanks!

    Eric

  12. #12
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Sure - change

    Please Login or Register  to view this content.
    to something like this, if your "particular column" is Z

    Please Login or Register  to view this content.
    IF you have trouble making the change, post both your current code and a desription of the particulars that you have....

  13. #13
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Bernie,

    Thanks so much for the quick reply here. So that addition seemed to work, somewhat. You can see below that the column that I'm specifying for the > 999 is column F. When I added in your code, and the Target.Column = 6, I do not get the email output when I enter a value greater than 999 in column F. However, I DO get the email output after I delete the value that I just entered from the cell in Column F.

    Please Login or Register  to view this content.
    This code is followed by the Sub Mails

    Eric

  14. #14
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Oops - I forgot what you were doing and messed up the logic. Try this

    Please Login or Register  to view this content.

  15. #15
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Bernie,

    When I changed to that now I am not getting any output based on column F.

    Eric

  16. #16
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Are there values in column F greater than 1000? It is hard to figure out a solution without the workbook - could you copy the sheet and remove all the rows except for one where you think the code should work but it does not... Remove any private or sensitive values, but keep the macros...

  17. #17
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Bernie,

    I would actually like the macro to run in every row moving forward. So if a row in column F happens to have a value greater than 1000 then it'll spit out the email with information from that row. That is how all of the "Yes" valued outputs are working currently, they track whatever row that "Yes" was entered in and return information specific to that row.

    Here is the attached sheet with most information removed. I left some information in the most recent entry, row 790. In the file you can see a number of columns that track "Yes" and then spit out information based on that entry. However, you can see the relevant column "F" with the value amount.

    Eric
    Attached Files Attached Files

  18. #18
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    You used > instead of < in the line that I posted.

    You want to run the code if it is > 999 but you DON'T want it to run if it is < 999 - the code I posted is code to NOT run the email macros.

  19. #19
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    I tried the original convention you sent over first and didn't work so I messed around with that sign a few times before replying back.

  20. #20
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Change the entire sub to this - which may be easier to understand:

    Please Login or Register  to view this content.

  21. #21
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Ok thanks.

    However, values greater than 1000 in column F are still not calling to Outlook6 Sub mail.

  22. #22
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Are you expecting to enter values into column F and have the code run? The code only runs when you enter Yes values in the other columns - otherwise, we would not be able to determine which mail macro to use.

  23. #23
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Yeah so what I would like to do is have the code run if any of the values in the specified columns are Yes and also run if the value in column F is greater than 1000.

  24. #24
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    This will search each of the 'yes' columns if you change the value in F:

    Please Login or Register  to view this content.

  25. #25
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Bernie,

    Thanks again for all the help. This is closer - what the code you sent does is send out the email if column F is greater than or equal to 1000, this part is good. 2 things about it that won't work though is that now none of the "Yes" columns run and column F only runs if another "Yes" column has been entered. I changed the code to the below (removed your If Target.column line) and this allows all of the "Yes" columns to still run. It also allows column F to run if > 1000, HOWEVER, it's still only running in column F if another "Yes" column is entered. I need column F to independently run if > 1000.

    Please Login or Register  to view this content.

  26. #26
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    Also, I've noticed that the email will run if column F is greater than 1000 AND another "Yes" cell is entered, but it doesn't run Mail_small_Text_Outlook6, it runs the mail outlook code for whatever column the "Yes" was entered in.

  27. #27
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    But what should run if column F is over 1000? You had originally had "Yes" in your code check for column F (which I just copied but did not really think about) - so I guess we could just change

    Please Login or Register  to view this content.
    to

    Please Login or Register  to view this content.
    Then, when F is over 1000, Mail_small_Text_Outlook6 will run.

  28. #28
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    I would want a totally independent email chain to be sent out. So each "YES" column has an independent email body and recipients that go along with it and I want the same but for column F > 1000.

    At your last suggestion, I actually had an idea to try something else. It actually got a bit closer, now what I just explained above is essentially achieved, however, now EVERY column that has a "YES" simultaneously sends an email if any new "Yes" columns are checked. So previously, lets say for example I clicked "Yes" in column 12 - then only column 12 email chain would automatically be sent out. THEN if I clicked "Yes" in column 16 - then only column 16 email chain would be sent out. With the code below, EVERY column that has "Yes" gets simultaneously created each time a new "Yes" is selected, which I do not want. However, the code below has allowed Column F to independently generate it's own email chain with a value entry greater than 1000.

    Please Login or Register  to view this content.

  29. #29
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    This will look at changes only:

    Please Login or Register  to view this content.

  30. #30
    Registered User
    Join Date
    10-27-2017
    Location
    New York City
    MS-Off Ver
    2016
    Posts
    39

    Re: Multiple Macros on Single Sheet

    That looks like it did the trick!

    Thank you so much Bernie, this is a huge help. Much appreciated.

  31. #31
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Multiple Macros on Single Sheet

    Sorry I misunderstood your requirements so badly - I just re-read your first post from yesterday and realized that I mis-interpreted what you had asked for....

+ 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. Excel search by entering single or multiple criteria | VBA | Macros Please Help!
    By cakeller in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 04-06-2016, 09:35 PM
  2. [SOLVED] Macros for single sheet to muliple sheets
    By KarenLeukenhause in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-05-2014, 12:19 PM
  3. movinf multiple rows to a single row using macros
    By meloneis in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 12-15-2013, 07:46 PM
  4. moving multiple rows to a single row using macros
    By meloneis in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-15-2013, 03:26 PM
  5. [SOLVED] Macros To Move Multiple Rows To Another Sheet And Macro To Move Single Rows To DAX Table
    By jcaynes in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-22-2013, 05:08 PM
  6. [SOLVED] Pull data if there is any from a single column in multiple worksheets into a single sheet
    By bcas77 in forum Excel Programming / VBA / Macros
    Replies: 29
    Last Post: 07-11-2013, 01:22 PM
  7. Macros are not saved to new file (as single sheet)
    By Oscar de Souza in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-25-2013, 03:47 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