I am able to create year, Month, and day by using Val(left([],4)) , mid and right.
When I try to put it back together using Date(Yr,Mon,day) does not work. This should be simple.
Thanks in advance
I am able to create year, Month, and day by using Val(left([],4)) , mid and right.
When I try to put it back together using Date(Yr,Mon,day) does not work. This should be simple.
Thanks in advance
In Access, the function to use is DateSerial, i.e.
DateSerial(Yr,Mon,day)
See: https://support.office.com/en-US/Art...a-93f2b046f503
year(date) & month(date) & day(date)
ranman, the value is text, not a valid date, so Year(), Month(), Day() won't work.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.