Date formulas

Lauralou

New Member
Joined
Oct 11, 2004
Messages
32
Hi there

I'm (rather ambitiously) trying to set up a macro on a worksheet so that you press a button and excel will instantly put in a new row at the desired location and in addition to a few other things will insert today's date in a cell within that row. I was going to use the TODAY () function but my problem is that I don't know how I get it to keep that date when the sheet is opened on a later date and to stop it updating to whichever date. Its going to be an ongoing logsheet.

Can anyone help?

Cheers

Laura
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Did you want something like this?

Code:
Private Sub CommandButton1_Click()
Range("A5").EntireRow.Insert
Range("A5").Value = Format(Now(), "mm/dd/yyyy")
End Sub
 
Upvote 0

Forum statistics

Threads
1,219,161
Messages
6,146,657
Members
450,706
Latest member
LGVBPP

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