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

Can someone explain what is the difference between these two messages in SAS log?

ERROR 48-59: The format XXX was not found or could not be loaded.

NOTE 484-185: Format XXX was not found or could not be loaded.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
If you didn't specify
option nofmterr;

you will get
ERROR 48-59: The format XXX was not found or could not be loaded.

otherwise, you will get
NOTE 484-185: Format XXX was not found or could not be loaded.

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

You have given us no context. We need to see the log that contains these messages (including the code as it appears in the log, plus all ERRORs, WARNINGs and NOTEs)

 

--
Paige Miller
Ksharp
Super User
If you didn't specify
option nofmterr;

you will get
ERROR 48-59: The format XXX was not found or could not be loaded.

otherwise, you will get
NOTE 484-185: Format XXX was not found or could not be loaded.
Tom
Super User Tom
Super User

That reflects a different setting for the FMTERR system option.

208   options fmterr;
209   data x;
210    format x nosuch.;
                -------
                48
ERROR 48-59: The format NOSUCH was not found or could not be loaded.

211   run;

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.X may be incomplete.  When this step was stopped there were 0 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.17 seconds
      cpu time            0.01 seconds


212   options nofmterr;
213   data x;
214    format x nosuch.;
                -------
                484
NOTE 484-185: Format NOSUCH was not found or could not be loaded.

215   run;

NOTE: Variable x is uninitialized.
NOTE: The data set WORK.X has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 4 replies
  • 395 views
  • 0 likes
  • 5 in conversation