Hi, I have an unbound date field in the header of a continuous form where users can use the date picker to select a date. This field is set to the default value of another bound field that is a number field in the details section. I am trying to get the number field to format the date information as yyyymmdd.
I currently have the following code in my default value of my bound field. The only problem with this is it cuts off the beginning zero for one digit months and days.
=Year([Forms]![Timecard Entry]![WEDate]) & Month([Forms]![Timecard Entry]![WEDate]) & Day([Forms]![Timecard Entry]![WEDate])
Does anyone know a way to get it formatted to include the beginning zero?
I currently have the following code in my default value of my bound field. The only problem with this is it cuts off the beginning zero for one digit months and days.
=Year([Forms]![Timecard Entry]![WEDate]) & Month([Forms]![Timecard Entry]![WEDate]) & Day([Forms]![Timecard Entry]![WEDate])
Does anyone know a way to get it formatted to include the beginning zero?