How to add * in a date field-before and after the date?
Answers
-
You need to create a new calcualted/formula field with the data type of "character". You can then use the following formula:
"*"+dtoc([Original Date])+"*"
where [Original Date] should be substituted with the correct field name. Since you will be outputing a character data type, you need to convert the date field from a date data type to a character data type (dtoc).
0 -
Altair Forum User said:
You need to create a new calcualted/formula field with the data type of "character". You can then use the following formula:
"*"+dtoc([Original Date])+"*"
where [Original Date] should be substituted with the correct field name. Since you will be outputing a character data type, you need to convert the date field from a date data type to a character data type (dtoc).
Chris, That worked ! Thanks very much !!
0