Looking for a function that will return the day of the week (M, T, Wetc.) for a given date...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Coll

    Looking for a function that will return the day of the week (M, T, Wetc.) for a given date...

    I'm looking to convert a date into the day of the week it occurred on
    - hopefully using a simple function. E.g. if the field value is
    6/13/08, it would return a value of Friday. Any ideas?
  • Mikal via AccessMonster.com

    #2
    Re: Looking for a function that will return the day of the week (M, T, Wetc.) for a given date...

    Coll wrote:
    >I'm looking to convert a date into the day of the week it occurred on
    >- hopefully using a simple function. E.g. if the field value is
    >6/13/08, it would return a value of Friday. Any ideas?
    try FORMAT([MyDateField],'dddd')

    Mike

    --
    Mike Pippins

    "We have met the enemy and he is us." -- Pogo Possum

    Message posted via AccessMonster.c om


    Comment

    Working...