Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 8793 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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?:

  • Newbies
Posted

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

This topic is 8793 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.