how can i convert a julian date into a date recognised by Access

J

John Vinson

Please post your questions as questions. It makes it easier.

The answer depends on what you mean by "Julian date"; that term is
used for MANY different kinds of formats, such as the astronomical
julian date, the modified astronomical julian date, the military date
(last digit of the year and three day digits), yyddd, and so on and so
on.

Usually you'll have some sort of a year and some sort of a day; if
it's the fairly common yyyyddd type, try

DateSerial(Left([JDate], 4), 1, Val(Right([JDate], 3)))

John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top