Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CAN DATES BE CHANGED TO TEXT????

Status
Not open for further replies.

samsunguser

Technical User
Feb 10, 2004
28
GB
is it possible to change dates e.g. 01/11/04 to a day e.g Friday? I need to do a report based on how many requests have been logged each Saturday - but our helpdesk database logs these days as dates. How would I do this???
 
Sam,

You can do this easily by formatting the date field. Go to Format Field\Date\Customize and set the Format "Month" to none, Day to none and year to none. Then select the "Day of Week" to long.


You could also use a formula to "convert" to the day of week name as follows:
Code:
WeekdayName (DayOfWeek(Date(yyyy,mm,dd)))

et voila!

Lloyd
 
WeekdayName(DayofWeek(({YourDateField})))

Should work nicely.

Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports
askdon@srhconsulting.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top