May 23, 2002 #1 Ouch Programmer Joined Jul 17, 2001 Messages 159 Location 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 Joined Mar 20, 2002 Messages 46 Location 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.