Cell Memory/Delay

Mohsen25

New Member
Joined
Feb 5, 2025
Messages
1
Office Version
  1. 2003 or older
Platform
  1. Windows
How to memorise/store the previous value of a calculation, for a comparison use with the current value.
Example: a calculation output the result value in cell A1. When A1 result changes, the previous result to be shown in cell A2.
 
Hi @Mohsen25.
I'm not sure I understood you correctly. But try the following code. Enter it into the sheet module where the result in A1 (because it contains a formula) is changed.
VBA Code:
Option Explicit
Dim lastValue       As Variant

Private Sub Worksheet_Calculate()
    Dim currValue As Variant
    currValue = Me.Range("A1").Value

    If currValue <> lastValue Then
        Me.Range("A2").Value = lastValue
        lastValue = currValue
    End If

End Sub
I hope I understood you correctly and my solution helped you solve your question. Good luck.
 
Upvote 0

Forum statistics

Threads
1,226,771
Messages
6,192,924
Members
453,767
Latest member
922aloose

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