Jump to content
Server Maintenance This Week. ×

Extracting date and time from 'timestamp'


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

Recommended Posts

Thanks for advices. Both methods work fine.

My problem was, however, due to an improper format of the imported timestamp field.

I have one further question. Does 'GetAsDate' read the date only from DDMMYY-format timestamp? (It seems so).

In my solution I import data which contains a timestamp field formated MMDDYY. I have already written a calculation formula converting the date to DDMMYY format. But perhaps it is possible to read it 'natively'?

Regards

Tomek

Link to comment
Share on other sites

Filemaker's native date is a serial number. To display the date, Filemaker uses the date format of the operating system.

The GetAsDate() function works in the opposite direction. It takes text and tries to convert it into a valid Filemaker date. This will only work if the text is a date formatted in the date format of the operating system.

MMDDYY is NOT a date or timestamp - it is text. Unless your operating system is set to use MMDDYY as its date format, GetAsDate ( MMDDYY ) will not work.

If your imported data has a text field in the format MMDDYY, and your operating system date format is DD/MM/YY (note the separator!), then you can use the calc (result is Date) =

GetAsDate (

Middle ( text ; 3 ; 2 ) & "/" &

Left ( text ; 2 ) & "/" &

Right ( text ; 2 )

)

  • Like 1
Link to comment
Share on other sites

This topic is 6947 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.