May 6, 201015 yr I want to delete the last three words when I import records into a DB - this is how the whole string looks: Mr John Doe 2009 Size: 12-13 This is what I want: Mr John Doe It needs to be worked around deleting the right hand words because the number on the left vary (e.g. there could be Mr John Henry Doe) What is the expression for deletion of RightWords - e.g. deleting rather than returning the found text? Thx for any help.
May 6, 201015 yr Author Thank you worked like a charm. What if I now want to KEEP/GET the 3rd word from the right (which is a number)and paste it into another empty field? Edited May 6, 201015 yr by Guest
May 6, 201015 yr Try = LeftWords ( RightWords ( YourField ; 3 ) ; 1 ) This assumes your field has at least 3 words - otherwise it will return the first word.
May 6, 201015 yr Author Thx - also worked! These are difficult to get the hang of especially when nested.
Create an account or sign in to comment