BookmarkSubscribeRSS Feed
RameshReddy
Calcite | Level 5

Hi,

I am generating .prn fromat form sas using this code

DATA NULL;

  FILE "path /sample.prn"

SET  datasetname;

put  JOB_CODE $2.  YEAR_MONTH $6. '  ' BRANCH_CODE $7. ITEM_CODE 3. NO_OF_ACCOUNT_OTHERS zeros.    ;

RUN;

These are diffent formats applied

while opening .prn in word pad i am able to get result

but when iam opening it in notepad i am unable to get result in each line

as second line of result is comming in first line of .txt

kindly look into issue and help

1 REPLY 1
Tom
Super User Tom
Super User

I usually see that behavior when opening text files generated on Unix.  Unix uses just a LineFeed ('0A'x) as the end of line indicator, while DOS (Windows) uses a CarriageReturn ('0D'x) and LineFeed at the end of each line.  WordPad is smart enough to intrepret the lines that end only in a LF but Notepad is not.

You can force SAS to write the CR into the end of the lines by adding the TERMSTR=CRLF option to your FILE statement.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 2446 views
  • 0 likes
  • 2 in conversation