Recording data entry dates automatically

scoha

Active Member
Joined
Jun 15, 2005
Messages
428
I have a worksheet where I track project status of 50 or so projects at once. As each project passes through a defined milestone which is common for all projects ( such as design, tender, construction, completion) I need to update the project status. How can I record the date at which I hit the check box against each project status such that this date is entered into a diary log of project progress? Today() will always update itself so I cant see how I can use this function.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
when in design mode double click the checkbox to get its code then use this

Code:
Private Sub CheckBox1_Click() ' change as necessary
    If CheckBox1.Value = True Then ' change as necessary
        Range("A1") = Date ' change as necessary
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,679
Messages
6,126,177
Members
449,296
Latest member
tinneytwin

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