Hi There,
I'm attempting to update a short date formatted field with a consistent year without changing the Month or Day. Below is what I have so far, when trying to update it however I get a Type Conversion Error and I'm at a loss... Any help would be much appreciated:
UPDATE [New Hires]
SET [New Hires].DOB = Right$([DOB],4) & "1901"
WHERE [New Hires].DOB Not Like "*1901";
Thanks
GN
I'm attempting to update a short date formatted field with a consistent year without changing the Month or Day. Below is what I have so far, when trying to update it however I get a Type Conversion Error and I'm at a loss... Any help would be much appreciated:
UPDATE [New Hires]
SET [New Hires].DOB = Right$([DOB],4) & "1901"
WHERE [New Hires].DOB Not Like "*1901";
Thanks
GN
Comment