Forum Discussion

SG001's avatar
SG001
Copper Contributor
Sep 28, 2020

Access Date and Day issue

How can I automatically populate and show the "Day" in a separate field which corresponds to the date chosen in the date field.

ie. select 28/09/2020 in date field and also populate the day field to show Monday.

  • Use another unbound control and use the Format function to display the value in the format you would like.

    =Format([FieldName], "The Format You Want")
    • SG001's avatar
      SG001
      Copper Contributor

      Thanks for the reply. The way I need the info is having a date field and a day field. At present I choose the day from a drop down but want to automate it. When I choose a date , I want the day to populate another field . The idea is that later, I can use the day field for employee daily work loading Daniel_Pineault 

      • Hi,

         

        you don't need a separate field (in the table) for the day as you can always let it be shown from any date you have. e.g. to show the day in a separate text box on the form:

         

        1. create a new text box and set its control source to: =YourDateField
        2. set the Format property of the text box to: dddd

        So, to show the day is just a matter of formatting the date.

         

        I'm not sure that I get exactly what you mean by

        > ...later, I can use the day field for employee daily work loading

         

        If this means you have to "extract" and analyze the days you probably can use the Weekday function e.g. in a calculated column of a query.

         

        Servus
        Karl
        *********
        http://AccessDevCon.com
        Access FAQ (German/Italian): http://donkarl.com

Resources