The issue is that you have Carriage Return and New Line characters imbedded in your column 3.  If you drag the row boundary and make each cell a multiple line cell, you will see the characters that are following lines

The hex values that are causing the issue are 0A and 0D.  Below is a little piece of code that will remove the values.  It will leave in the place of the 0A a blank space, but not for 0D.  The reasoning behind this, is that they always appear together, and only one blank space is needed.
Names Default To Here( 1 );
dt = Current Data Table();
For( k = 1, k <= N Rows( dt ), k++,
	value = "";
	For( i = 1, i <= Length( :column 3[k] ), i++,
		If(
			Char To Hex( Substr( :column 3[k], i, 1 ) ) ==
			"0A", value = value || " ",
			Char To Hex( Substr( :column 3[k], i, 1 ) ) !=
			"0D",
				value = value || Substr( :column 3[k], i, 1 )
		)
	);
	:column 3[k] = value;
);
					
				
			
			
				
	Jim