When I am writing data to Excel using ODS Excel and Proc print..
Some of the data is wrapped to new line and automatic quotes are added to the data that is causing issues in the down stream analysis..
For ex:
"Social Awareness Analysis Report"
"Final Percent Coverage of Analysis structure"
How can I handle the below solution in SAS instead of each time opening the Excel and fixing thousands of records.
Google shows this solution...
To find and replace new lines in Excel, you need to 1 2 3 4 :
Select all the cells where you want to find and replace new lines.
Press Ctrl+H to open the Find and Replace dialog box.
In the Find what field, enter Ctrl+J. This will represent a new line character.
In the Replace with field, enter the value that you want to replace new lines with, such as a comma, a space, or nothing.
Click Replace All to apply the changes.
Thank you
... View more