Thanks for your persistence with me, Mike.
Quote:
Originally Posted by mike_bike_kite
Does the string you want moving always start in exactly the same position or is it after a certain pattern is found in the original string?
|
Yes, ssssss always follows vvvvv. But, vvvvv always has variable values.
Examples:
Cell value of ColumnA, row1:
vvvvv ssssss yyyyy tttttt
Cell value of ColumnA, row2:
1234 xyz ssssss Dbforums is awesome.tttttt
Cell value of ColumnB, row1:
uuuuuuu
Cell value of ColumnB, row2:
append tothe endofthis
Run query. Result:
Cell value of ColumnA, row1:
vvvvv
Cell value of ColumnA, row2:
1234 xyz
Cell value of ColumnB, row1:
uuuuuuu ssssss yyyyy tttttt
Cell value of ColumnB, row2:
append tothe endofthis
ssssss Dbforums is awesome.tttttt
So, note that
ssssss and
tttttt remain unchanged before and after the query in both rows. They and the second set of variable text no longer remain in ColumnA, row1 and row2. And the designated values are moved to ColumnB, row1 and row2.
