Ask a Question related to FileMaker, Design and Development.
-
Carl Mittler #1
Converting a text field to a date field - FM6
I need to convert a Text field containing both auto and manually entered
dates over to a Date field. The records that were autoentered move over
without a problem. But those that were edited or entered manually using a
two digit year do not. For example: 1/25/02 converts to 1/25/1902. Is
there any workaround to solve this problem short of manually correcting the
converted data.
Thanks
Carl
Carl Mittler Guest
-
Date comparison in a text data field
I have a database column field defined as a text. I store dates in format: dd/mm/yyyy. The user passes a Start date search string in the same... -
Date text Field
I have an asp form that is submitted to sql server 2000. There are three date fields. How can I allow the user to enter the date without any... -
Content from a memo field: converting the rich text into plain text
Hi folks, I have an Access 2000 db with a memo field. Into the memo field I put text with bold attributes, URL etc etc What I need to to is... -
Linking date field to text field entry
Is there a way to setup a date field that will automatically enter the date when any information is entered into a field next to it? -
date in text field
How can I include a date that is formatted in the following structure 9-July-03, and include it in a form text field? The form input code is:... -
Howard Schlossberg #2
Re: Converting a text field to a date field - FM6
if(
year(DateField)<1920,
date(month(DateField), day(DateField), year(DateField)+100),
DateField)
This will obviously take any year before 1920 and add a century to it.
If you might legitimately have data with the year 1920, then you'll need
to find the year cutoff that works for you.
Carl Mittler wrote:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~> I need to convert a Text field containing both auto and manually entered
> dates over to a Date field. The records that were autoentered move over
> without a problem. But those that were edited or entered manually using a
> two digit year do not. For example: 1/25/02 converts to 1/25/1902. Is
> there any workaround to solve this problem short of manually correcting the
> converted data.
> Thanks
> Carl
Howard Schlossberg (818) 883-2846
FM Pro Solutions Los Angeles, California
Associate Member, FileMaker Solutions Alliance
Howard Schlossberg Guest
-
manet #3
Re: Converting a text field to a date field - FM6
Carl Mittler <cmdesk@optonline.net> wrote:
a calculated "replace all" inserting "20" if the omega-3 character is> Is
> there any workaround to solve this problem short of manually correcting the
> converted data.
"/"
to test carefully !
--
Philippe Manet
manet Guest



Reply With Quote

