rob b
05-08-2001, 04:11 PM
How can I get a report to display the day of the week and the date ie. Monday 25 Jan etc.
Thanks in advance for any help.
Thanks in advance for any help.
|
View Full Version : days of week rob b 05-08-2001, 04:11 PM How can I get a report to display the day of the week and the date ie. Monday 25 Jan etc. Thanks in advance for any help. RedSkies 05-08-2001, 08:35 PM In the fields properties, set Format to Long Date. rob b 05-09-2001, 12:00 AM That just gives me 19 January 1999 I need it to say Monday 19/1/99 DH 05-09-2001, 12:47 AM Rob, Try dddd d/m/yy The help files Format Property-Date/Time Data Type shows different examples. David [This message has been edited by DH (edited 05-09-2001).] Rich@ITTC 05-09-2001, 12:52 AM Hi Rob The Long Date format is dependent on the Windows settings within Control Panel->Regional Settings->Date. You could therefore make changes at this level, though it would also affect other programmes (such as any date fields you have in Word). Also if you use your database on another pc, the date format would reflect the settings for that machine. If you want to maintain the format independently of the regional settings then use a custom format for that field: dddd dd mmmm yyyy gives you Monday 19 January 2001. dddd dd mmm yyyy gives you Monday 25 Jan 2001 dddd dd/mm/yy gives you Monday 25/01/01 ddd d/m/yy gives you Monday 25/1/01. HTH Rich Gorvin [This message has been edited by Rich@ITTC (edited 05-09-2001).] |