Watch cell?

ljubo_gr

Active Member
Joined
Dec 6, 2014
Messages
251
Office Version
  1. 2013
Platform
  1. Windows
Is there a way to monitor(watch) cell value changes w/o Watch window? Office2013. I have cell in witch i input raw data like let's say number 12345, i need formula or VBA sub to watch value changes and display me in other cell, date when was change occured, or if it's possible, days passed from change. Example: 12345 number was entered 2.6.2016., need to display days passed from 2.6.(8 days).

Thanks in advance. Thank you for your time and love for Excel!



P.s And if it's possible, non-volatile way. Thanks

Also asked: http://answers.microsoft.com/en-us/...tch-cell/12a5242e-08b4-47df-bdee-049b13b008db

http://www.ozgrid.com/forum/showthread.php?t=200064
 
Last edited:

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
AB
Date last changedValue

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
[TD="align: center"]1[/TD]

[TD="align: center"]2[/TD]
[TD="align: right"]02/06/2016[/TD]
[TD="align: right"]0[/TD]

</tbody>
Sheet1

Code:
Private Sub Worksheet_Change(ByVal Target As Range)


If Not Application.Intersect(Range("B2"), Target) Is Nothing Then
    Range("A4").EntireRow.Insert
    Range("A4").Value = Date
    Range("B4").Value = DateDiff("d", Range("A2").Value, Date)
    Range("A2").Value = Date
End If


End Sub

WBD
 
Upvote 0
Maybe this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    If Not Intersect(Target, Me.Range("A1")) Is Nothing Then MacroM
    
End Sub
in sheet1

and module:
Code:
Sub MacroM()

    Range("B1").Select
    ActiveCell.FormulaR1C1 = "=(NOW()-RC[0])"


End Sub

B1 format as "dd-hh:mm"
:confused:
 
Upvote 0

Forum statistics

Threads
1,223,276
Messages
6,171,139
Members
452,381
Latest member
Nova88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top