I have a cell in a worksheet (in Excel 2013) that contains a dropdown box. I want to run 3 different strings of code depending on which of the 3 dropdown choices the user picks. The code below is a portion of what I'd run if the user picks Option 2. How do I change this to get it to run after they choose Option 2 then enter?
Thanks for your help.
RR
-------------------------------
Sub Macro2()
'
' Macro2 Macro
'Set Column Widths for Option 2
Application.ScreenUpdating = False
Range("C1").Select
Selection.ColumnWidth = 13
Range("D1").Select
Selection.ColumnWidth = 13
End Sub
Bookmarks