Date query

species8514

Board Regular
Joined
Oct 4, 2006
Messages
98
I have an employee who seems to be incapable of entering todays date correctly in to excel. Obviously killing her would seem to be the simplest solution, however i dont really want to clean up afterwards.

So....

Is there a way of producing a button, which she could click - when she on a certain cell - which would enter the todays date automatically?

The date cant change once it's entered, so i cant just put in NOW, etc. & there are multiple cells on one line which may or may not require the date.

Before you say, she wouldnt remember =NOW even if i glued it to her head....

THX guys.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Yes you could create a special menu button and associate it with a macro. The macro is then:

Code:
Sub EnterDate()

        activecell=format(Date(),"dd-mmm-yy")

End Sub

Of course you can format the date how you want
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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