BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
CathyVI
Pyrite | Level 9

In a sas log where everything seems to look right. When you get an exclamation mark (!) in sas log does that signify an error and should I be concern about my codes.

 

data test2;

set test;

if x=1 then do;

if

! sum( a,b,c,

!d, e)=0 then y=1;

end;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Usually it means your lines of code are too long.  If the lines of code are longer than the line length used for the LOG then the wrapped lines of code are tagged with the !.

 

Lines of text in a program that is going to be read and edited by humans should be limited to about 75 characters each.  Otherwise the human will need to scan left and right to review the code.  Think about how newspapers organize articles on a page into columns.

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Usually it means your lines of code are too long.  If the lines of code are longer than the line length used for the LOG then the wrapped lines of code are tagged with the !.

 

Lines of text in a program that is going to be read and edited by humans should be limited to about 75 characters each.  Otherwise the human will need to scan left and right to review the code.  Think about how newspapers organize articles on a page into columns.

data_null__
Jade | Level 19

@CathyVI wrote:

In a sas log where everything seems to look right. When you get an exclamation mark (!) in sas log does that signify an error and should I be concern about my codes.

 

data test2;

set test;

if x=1 then do;

if

! sum( a,b,c,

!d, e)=0 then y=1;

end;

run;


You should have show the log.  Notice that line 44 is displayed multiple times.

 

 Capture.PNG

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2 replies
  • 2095 views
  • 8 likes
  • 3 in conversation