confused_Pete
Registered User.
- Local time
- Today, 22:26
- Joined
- Mar 19, 2003
- Messages
- 12
Hello,
Im looking into a way of using an update query to take a date from a field add a certain number of days to that date and then update another field with that date.
here is my select statement, how do i modify this to actually update the Date
SELECT tblorder_no.Date_ordered, DateAdd("d",3,[tblorder_no]![date_ordered]) AS Date_expected
FROM tblorder_no;
(created using the QBE)
Any help would be appreciated, (probably just me being dense again)
Pete
Im looking into a way of using an update query to take a date from a field add a certain number of days to that date and then update another field with that date.
here is my select statement, how do i modify this to actually update the Date
SELECT tblorder_no.Date_ordered, DateAdd("d",3,[tblorder_no]![date_ordered]) AS Date_expected
FROM tblorder_no;
(created using the QBE)
Any help would be appreciated, (probably just me being dense again)
Pete