• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Automatically freeze data after running new formula

Dear sir,

Do you have any way to keep data which come from formula still the same (like past value). And it will not involve with that fomular any more.
Suppose I don't want to anything on it second time.
Please see attachment for detail.

Thank,
Chanthan
 

Attachments

  • Copy value.xlsx
    8.4 KB · Views: 6
In short, no. You'll want to either be doing a copy, paste value every time. Or, since you're already manually changing something, just type the date into the correct cell. Final option is to have a macro insert the date stamp, such as:

Code:
Sub Example()
'Puts today's date in next blank cell in col E
Cells(Rows.Count, "E").End(xlUp).Offset(1).Value = Date
End sub
 
In short, no. You'll want to either be doing a copy, paste value every time. Or, since you're already manually changing something, just type the date into the correct cell. Final option is to have a macro insert the date stamp, such as:

Code:
Sub Example()
'Puts today's date in next blank cell in col E
Cells(Rows.Count, "E").End(xlUp).Offset(1).Value = Date
End sub

Thank anyways for your reply.
 
Back
Top