A bit more explanation along with layout and what desired output looks like.

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> A bit more explanation along with layout and what desired output looks like.
>
[quoted text clipped - 18 lines]
>
> - Show quoted text -
Hi Don,
Thanks for your reply, would like to use a change event along with the
Now() to update Cell a2 with the current time and date, when the cells
in A5:I105 (which contain data) are changed, but only if these cells
are adjusted in any way,
If no adjustments are made to the range("A5:I105") then the cell a2
would be unchanged.
Does this help ?
Steve
Don Guillett - 26 Feb 2008 14:27 GMT
Right click sheet tab>view code>copy/paste this
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("a5:i105")) Is Nothing Then
Range("a2") = Now
End If
End Sub

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
On Feb 26, 1:26 pm, "Don Guillett" <dguille...@austin.rr.com> wrote:
> A bit more explanation along with layout and what desired output looks
> like.
[quoted text clipped - 22 lines]
>
> - Show quoted text -
Hi Don,
Thanks for your reply, would like to use a change event along with the
Now() to update Cell a2 with the current time and date, when the cells
in A5:I105 (which contain data) are changed, but only if these cells
are adjusted in any way,
If no adjustments are made to the range("A5:I105") then the cell a2
would be unchanged.
Does this help ?
Steve
Gord Dibben - 26 Feb 2008 21:48 GMT
Steve
Would these be manual changes or the results of calculation?
Gord Dibben MS Excel MVP
>> A bit more explanation along with layout and what desired output looks like.
>>
[quoted text clipped - 31 lines]
>
>Steve