<< Does anyone have a snipet of code that can be used to set up SGET to delete the first character of data in a text field? >> What's the context? Updating data in a table? Try this:
UPDATE YourTable SET YourField = (SGET(YourField, SLEN(YourField), 2))) WHERE . . . Use a WHERE condition to make sure you don't hit records you don't want to change. -- Larry

