cancer2006
Programmer
I am using CRW8.5 and ACCESS97
I have two fields type Date/Time. Is my comparing criteria correct? The following formula is not printing the Einfo.hiredate field.
Einfo.rehiredate is also blank
whileprintingrecords;
if{EInfo.hireDate} <= {EInfo.rehireDate} then
{EInfo.rehireDate}
else
{EInfo.hireDate}
Later on I want to print the field in MM/DD/YYYY format. for this I am using the following formula.
Totext( DTSToDate({EInfo.hireDate}),"MM/dd/yyyy")
I have two fields type Date/Time. Is my comparing criteria correct? The following formula is not printing the Einfo.hiredate field.
Einfo.rehiredate is also blank
whileprintingrecords;
if{EInfo.hireDate} <= {EInfo.rehireDate} then
{EInfo.rehireDate}
else
{EInfo.hireDate}
Later on I want to print the field in MM/DD/YYYY format. for this I am using the following formula.
Totext( DTSToDate({EInfo.hireDate}),"MM/dd/yyyy")