elvis_impersonating_penguin Posted January 2, 2001 Posted January 2, 2001 ok.. in my filemaker database i have a field that just autoenters the creation date when i new record is created... and i formated so it displays like this: January 2, 2001. However, when i display it in a web browser using webcompanion it reverts back to 1/2/2001. is there anyway to make it display the as January 2, 2001 in the web browser?:
Anatoli Posted January 2, 2001 Posted January 2, 2001 IMHO use calculation field with date converted to text, that will display correctly in the same manner.
Simonpennington Posted January 3, 2001 Posted January 3, 2001 You put [fmp-field: date_created, format] and it should look the same as in filemaker Simon
elvis_impersonating_penguin Posted January 3, 2001 Author Posted January 3, 2001 well i was not able to get either one of those to work.. its not too important though.
Newbies tomrt Posted January 3, 2001 Newbies Posted January 3, 2001 Bman, Use a calculation field. The following calculation changes a date field (named "date") to the format like Wednesday, January 3, 2001... If(DayofWeek(date) = 1, "Sunday", If(DayofWeek(date) = 2, "Monday", If(DayofWeek(date) = 3, "Tuesday", If(DayofWeek(date) = 4, "Wednesday", If(DayofWeek(date) = 5, "Thursday", If(DayofWeek(date) = 6, "Friday", If(DayofWeek(date) = 7, "Saturday", ""))))))) & ", " & MonthName(date) & " " & Day(date) & ", " & Year(date) -tomrt
Recommended Posts
This topic is 8992 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now