How to make trim only when last character of string is comma remove it?
How to make trim only when last character of string is comma remove it?
Use
Where strText is the name of your text stringCode:if right(strText,1)="," Then strText=Left(strText,Len(strText)-1)