How to Auto save Date formula in excel

malekari

New Member
Joined
Jan 23, 2013
Messages
32
Hi team,

I am looking for a formula/vba where the 'change date' is formulated to =Today() date and 'changes updated by' which is basically the name - is either picked up from an individual's desktop or from the last modified Info. However, these details i.e., the date and the name is later freeze when the excel is closed. Does anyone think that we could have a fix for this?

Below is the excel format:
1693507314313.png


Thanks again!

Regards,
Ivan
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
In Excel VBA, there are "event procedures", in which VBA code is automatically triggered upon some event happening, such as:
- the opening of a workbook
- the selection of a cell
- the manual updating of a cell
- a recalculation happening
- the saving of a workbook
and many others.

What is very common to do with Excel VBA is to add a "Date Stamp" to a certain cell by automatically populating it with the current date (not a formula, but the actual date) when another cell is updated.
(If you do a search on "Excel VBA Date Stamp", you will finds thousands of threads on this topic as this question is asked quite often).

Does something like that sound like it will work for you?
If so, we need to know a few things, such as:
- what cell/column are we monitoring for a change in value
- what cell/column the date stamp will go into
- what cell/column the username will go into
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,689
Members
449,117
Latest member
Aaagu

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