July 30, 200421 yr I'm trying to figure out how to remove the first line of a text field. I was thinking maybe MiddleValues ( myField ; 2 ; 99999999999999999999 ) but I thought there might be a better way!
July 30, 200421 yr If you mean up to the paragraph return, then (depending on what you want to do when there is only one line): Right(MyField;Length(MyField) - Position(MyField;;1;1)) or case(patterncount(MyField,), Right(MyField; Length(MyField) - Position(MyField;;1;1)))
July 30, 200421 yr MiddleValues( myField; 2; ValueCount(myField) - 1 ) or RightValues( myField; ValueCount(myField) - 1 ) works for version 7.
Create an account or sign in to comment