View Single Post
 
Old 04-08-2016, 09:16 AM
OfficeNewb OfficeNewb is offline Windows 10 Office 2013
Novice
 
Join Date: Nov 2015
Posts: 4
OfficeNewb is on a distinguished road
Default

Hello -

In order to insert the current date into a cell you could use:

Code:
 
ActiveCell.Value = Date
For your specific scenario you will first need to make reference to the cell where you want to place the current date. For example, if the date field is called "cDate" then your code would look like this.

Code:
 
cDate.value = Date
Reply With Quote