LTDragon07
New Member
- Joined
- Mar 13, 2015
- Messages
- 8
I'm querying a linked table and trying to reformat the date to yyyymmdd from yyyyddd
example data
DATA OUTPUT
2015001 2015/01/01
2015125 2015/04/05
what I have now in he query
OUTPUT: Left([DATA],4) & "/" & Right([DATA],3)
2015125 2015/125
which only gets me to so far I don't know how to convert the ddd to mmdd
example data
DATA OUTPUT
2015001 2015/01/01
2015125 2015/04/05
what I have now in he query
OUTPUT: Left([DATA],4) & "/" & Right([DATA],3)
2015125 2015/125
which only gets me to so far I don't know how to convert the ddd to mmdd