SNAPSHOT

Cooki

Board Regular
Joined
Jul 31, 2018
Messages
86
Hi All

Is there a way to get snapshot of a cell if it is changed.

So dropdown list in E1 and i want a snapshot of that cell if it is changed in Cell P1

Is this possible?

Thanks
 
Perhaps this

VBA Code:
'declare these 2 variables at top of sheet module ABOVE all procedures
Private oldvalue As String, Ref As String

Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Range("C2:C156"), Target) Is Nothing Then
        If Target.Address = Ref Then
            Application.EnableEvents = False
            If oldvalue <> Target.Value Then Target.Offset(, 17).Value = oldvalue
            Application.EnableEvents = True
        End If
        oldvalue = ""
        Ref = ""
    End If
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Selection.Count <> 1 Then Exit Sub
    If Not Intersect(Range("C2:C156"), Target) Is Nothing Then
        oldvalue = Target.Value
        Ref = Target.Address
    End If
End Sub

Works perfectly

Really appreciate the help
 
Upvote 0

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Forum statistics

Threads
1,215,461
Messages
6,124,956
Members
449,200
Latest member
indiansth

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