jasonwood Posted July 30, 2004 Posted July 30, 2004 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!
Ender Posted July 30, 2004 Posted July 30, 2004 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)))
-Queue- Posted July 30, 2004 Posted July 30, 2004 MiddleValues( myField; 2; ValueCount(myField) - 1 ) or RightValues( myField; ValueCount(myField) - 1 ) works for version 7.
Recommended Posts
This topic is 7424 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now