G
George Applegate
I have some visual basic code that runs in an excel 2003 spreadsheet.
It runs on some PC's that have excel 2007, but not all, so I'm
guessing it's some sort of setting within excel??? I have macros
enabled on 2007 but it must be some other setting???? Any ideas where
I can look?
Here is the visual basic code. As I said, it runs on some PC's with
excel 2007 installed, just not all of them. Any ideas? As I said, I
ahve macros enabled on all of them.
Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Range("C7:C14"), Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
Range("c2").Value = Now()
Application.EnableEvents = True
End Sub
thanks, ga
George Applegate
(e-mail address removed)
It runs on some PC's that have excel 2007, but not all, so I'm
guessing it's some sort of setting within excel??? I have macros
enabled on 2007 but it must be some other setting???? Any ideas where
I can look?
Here is the visual basic code. As I said, it runs on some PC's with
excel 2007 installed, just not all of them. Any ideas? As I said, I
ahve macros enabled on all of them.
Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Range("C7:C14"), Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
Range("c2").Value = Now()
Application.EnableEvents = True
End Sub
thanks, ga
George Applegate
(e-mail address removed)