Use this SQL to remove carriage return line feed from SQL server for displaying in excel:
select REPLACE(column_name, CHAR(13) + CHAR(10), ', ') from table_name ;
Based on posts by Aaron Bertrand and David Seruyang.
Use this SQL to remove carriage return line feed from SQL server for displaying in excel:
select REPLACE(column_name, CHAR(13) + CHAR(10), ', ') from table_name ;
Based on posts by Aaron Bertrand and David Seruyang.