toms Posted April 18, 2005 Posted April 18, 2005 Hi I would like to extract date and time from a timestamp field. Are there any more 'elegant' methods than using left/right/middle string functions? Thansk for interest and suggestions
RalphL Posted April 18, 2005 Posted April 18, 2005 For time use GetAsTime ( RightWords ( GetAsText ( TS ) ; 1 ) ) For date use GetAsDate ( GetAsText ( LeftWords ( TS ; 1 ) ) ) TS is the timestamp field
Ender Posted April 18, 2005 Posted April 18, 2005 GetAsDate ( TimeStamp Field ) and GetAsTime ( TimeStamp Field ) 1
toms Posted April 19, 2005 Author Posted April 19, 2005 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
comment Posted April 19, 2005 Posted April 19, 2005 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 ) ) 1
Recommended Posts
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