Happy 4th!
This is my situation. I have two fields in the database that are varchar (I would make them date fields but another person in the office won't). My data looks like this:
- 09/01/07
- 06-01-2007
- March 2008
- December 31. 2007
- 06012007
The format I want to arrive at is 09/07 (MM/YY).
I have the following, but it doesn't work in the last two records (December 31. 2007 or 06012007):
if isdate({CERTIFICATIONDATE}) then
cdate({CERTIFICATIONDATE});
Thanks in advance...
This is my situation. I have two fields in the database that are varchar (I would make them date fields but another person in the office won't). My data looks like this:
- 09/01/07
- 06-01-2007
- March 2008
- December 31. 2007
- 06012007
The format I want to arrive at is 09/07 (MM/YY).
I have the following, but it doesn't work in the last two records (December 31. 2007 or 06012007):
if isdate({CERTIFICATIONDATE}) then
cdate({CERTIFICATIONDATE});
Thanks in advance...