I IanT Registered User. Local time Today, 17:41 Joined Nov 30, 2001 Messages 191 Oct 4, 2005 #1 Hi This is probally really easy........ I have data with dates like 15/05/2005, 30/09/2005. I need to convert the dates to 01/05/2005 and 01/09/2005 Can anyone help!
Hi This is probally really easy........ I have data with dates like 15/05/2005, 30/09/2005. I need to convert the dates to 01/05/2005 and 01/09/2005 Can anyone help!
M Murli Registered User. Local time Today, 22:11 Joined Sep 21, 2005 Messages 33 Oct 4, 2005 #2 You can use an update query to change the dates.
S ScottGem Registered User. Local time Today, 12:41 Joined Jun 20, 2005 Messages 1,119 Oct 5, 2005 #3 =DateSerial(Year([datefield]),Month([Datefield]),1) Will return a date of the first of the month listed in the datefield.
=DateSerial(Year([datefield]),Month([Datefield]),1) Will return a date of the first of the month listed in the datefield.