How to add * in a date field-before and after the date?
Find more posts tagged with
Sort by:
1 - 2 of
21
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 !!
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).