I would like to read data as shown in the excel file and display the same as output, what is the easiest way to do that. For example, data have; infile datalines dlm="#"; input Disease $ Description $; datalines; Atrial Flutter # Atrial flutter (AFL) is a common abnormal heart rhythm that starts in the atrial chambers of the heart. When it first occurs, it is usually associated with a fast heart rate and is classified as a type of supraventricular tachycardia. Tachycardia # Tachycardia is a condition that makes your heart beat more than 100 times per minute. There are three types of it: Supraventricular. This happens when the electrical signals in the organ's upper chambers misfire and cause the heart rate to speed up. It beats so fast that it can't fill with blood before it contracts. ; run; Main issue is with the text wrapping since it reads as one long line of text which I want it to be spread across multiple lines just as in excel file. The output of sas dataset should like the one attached in excel file (The text should wrap just as in the excel file )
... View more