Hi, I've been getting a lot of great help in here but I needed one more answer to complete my current Excel project.
I would like to create a "Reset" macro that will change a couple of validation lists back to the first choice; which is "All".
This one works but it does not trigger my other code when "All" is typed in there:
Is there a way to make the macro select the item because this one seems to type it in but it doesn't cause my other code to trigger upon clicking the macro.Sub ResetAll() Application.ScreenUpdating = False Dim myRng As Range Set myRng = Range("D3:D5") myRng.Value = "All" Set myRng = Range("D3") myRng.Value = "" Application.ScreenUpdating = True End Sub
Thank you for any help!
-Evan
Last edited by emwhite; 12-16-2010 at 09:44 AM.
I was able to get this one to work that I found from a 3rd page google search! lol
Sub ResetAll() Range("D4").Value = "All" Range("D5").Value = "All" Range("D3").Value = "" End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks