S
Samba1
Version: 2004
Operating System: Mac OS X 10.4 (Tiger)
Processor: Intel
Hi - New to VBA & the forum.
When I create a macro that references a data validation cell, the code does not acknowledge the value selected from the pull down menu. But, if the value is manually typed into the data validation cell, the code works fine. Any ideas? I've had PC users try the code with no problems.
I'm using the following code:
Operating System: Mac OS X 10.4 (Tiger)
Processor: Intel
Hi - New to VBA & the forum.
When I create a macro that references a data validation cell, the code does not acknowledge the value selected from the pull down menu. But, if the value is manually typed into the data validation cell, the code works fine. Any ideas? I've had PC users try the code with no problems.
I'm using the following code:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1:A5")) Is Nothing And _
Target = "Complete" Then Range("D" & Target.Row) = Date
End Sub[Code]
Thank you! Kevin