May 4, 2009 #1 cdulong Technical User Nov 18, 2008 80 CA I need a formula that will add a "-" after the fourth character of a string, then add the remainder of the string after the "-". Thanks,
I need a formula that will add a "-" after the fourth character of a string, then add the remainder of the string after the "-". Thanks,
May 4, 2009 #2 jdemmi MIS Jun 6, 2001 1,106 US mid({table.field},1,4) & '-' & mid({table.field},4) -- Jason "It's Just Ones and Zeros Upvote 0 Downvote
May 4, 2009 #3 jdemmi MIS Jun 6, 2001 1,106 US OOPS... mid({table.field},1,4) & '-' & mid({table.field},5) -- Jason "It's Just Ones and Zeros Upvote 0 Downvote
May 4, 2009 Thread starter #4 cdulong Technical User Nov 18, 2008 80 CA Thanks!! Works like a charm. CD Upvote 0 Downvote