Placed after the loop in the previous post, this will take out leading and trailing carriage returns.
If [Left(field,1)=” ¶”]
Set Field[“field”, “Right( field, Length(field)-1 )”
End If
If [Right(field,1)=” ¶”]
Set Field[“field”, “Left(field, Position( field, "¶" ,1, PatternCount(field, "¶" ))-1)”]
End If