May 23, 2002 #1 Ouch Programmer Jul 17, 2001 159 GB I have a field on a form like so One ; two ; three ; four users sometimes add a extra ; One ; two ; three ; four ; i want to delete the last ; but only if it is a ; Any idea's
I have a field on a form like so One ; two ; three ; four users sometimes add a extra ; One ; two ; three ; four ; i want to delete the last ; but only if it is a ; Any idea's
May 23, 2002 1 #2 pkw25 MIS Mar 20, 2002 46 IE Could you try something like lent = Len(input) if Right(Input,2)=";;" then CleanField = Left(input,lent-1) Paraic. Upvote 0 Downvote
Could you try something like lent = Len(input) if Right(Input,2)=";;" then CleanField = Left(input,lent-1) Paraic.