vu_lan_nhi
New Member
- Joined
- Apr 6, 2016
- Messages
- 6
Hi
I am relatively new to macro, so excuse my question. I keep receiving error '424' (object required) while trying to run the macro below:
Any help is very much appreciated!
I am relatively new to macro, so excuse my question. I keep receiving error '424' (object required) while trying to run the macro below:
Code:
Private Sub MsgBoxProcessingCredits()
Application.EnableEvents = True
Application.ScreenUpdating = False
If Target.Address = Range("processingdropdown").Address Then
Application.EnableEvents = False
If Range("processingdropdown").Value = "Monthly" Then
msgbox ("Select number of months in dropdown list in column C")
Else
msgbox ("Overwrite column C with the flat rate amount for processing credit incentives")
End If
End If
Application.EnableEvents = True
End Sub