Bennie47250
Programmer
Attempting to clean up a field that may contain a ; at the beginning of the field or the end of a field. Thought I could use the replace function with a right function but does not seems to be working.
How would I go about removing a character if it is only found at the beginning or ending of a field?
The expression I wrote that is not working is Replace(Right([Tbl_Customers]!,1),";","")
The data looks like this bennie@abc.com;geoff@abc.com;
Needing to replace only the last ; in the address and want to replace it with nothing
Thanks
Bennie
How would I go about removing a character if it is only found at the beginning or ending of a field?
The expression I wrote that is not working is Replace(Right([Tbl_Customers]!,1),";","")
The data looks like this bennie@abc.com;geoff@abc.com;
Needing to replace only the last ; in the address and want to replace it with nothing
Thanks
Bennie