Originally posted by kevlray
If indeed the the date field is YYYYMMDD, then this is one possible way of converting in a formula.
mid({datefield},5,2)+'/'+right({datefield},2)+'/'+left({datefield},4)
Also since strings are treated like arrays you could do something like this (not tested).
{datefield}[5 to 6]+'/'+{datefield}[7 to 8]+'/'+{datefield}[1 to 4]
Thank you! I was thinking of something like this (I see other posts with similar suggestions) but how do I do that with my current if/else/then formula that I need to use to find the custom field?
if{USERFIELD_STORAGE.UFSFIELDNAME}="OriginalStartDate"
then{USERFIELD_STORAGE.ALPHA}
else""
Do I need a 2nd formula field to format the field into that format?
Thank you for your prompt help. I truly appreciate it!