We need more info. The fact that the cell has something in it means that at
some point it changed (since all cells in a workbook are blank to start
with). Is this a file you send to someone else? Is it a shared workbook? At
what point do you want to "freeze" the contents of the cells? Do you need to
store the prior values?
I do execute a routine that brings some values from other workbook to mine.
Those values will be available to be changed, but not necessarily they will
be. I just want to make that check, so I can mark with an "U" of update. If
there´s no changes, i´ll mark with "".
> We need more info. The fact that the cell has something in it means that at
> some point it changed (since all cells in a workbook are blank to start
[quoted text clipped - 9 lines]
> >
> > Tks.
Jim Thomlinson - 06 Dec 2007 20:16 GMT
Since I don't know where your values are that you want to capture in terms of
changing this works on the entire sheet. Right click the sheet tab and select
view code... Paste the following in the code window.
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ErrorHandler
Application.EnableEvents = False
Target.Offset(0, 1).Value = "U"
ErrorHandler:
Application.EnableEvents = True
End Sub

Signature
HTH...
Jim Thomlinson
> I do execute a routine that brings some values from other workbook to mine.
> Those values will be available to be changed, but not necessarily they will
[quoted text clipped - 14 lines]
> > >
> > > Tks.
bbussoloti - 07 Dec 2007 17:07 GMT
Ok... the event handler is a good idea. I´ll work on it.
> Since I don't know where your values are that you want to capture in terms of
> changing this works on the entire sheet. Right click the sheet tab and select
[quoted text clipped - 26 lines]
> > > >
> > > > Tks.