BookmarkSubscribeRSS Feed
🔒 This topic is locked. We are no longer accepting replies to this topic. Need further help? Please sign in and ask a new question.
SAS_Tipster
Moderator

Do you try to write code with no WARNING messages and are frustrated when you get the following message in the log even though the code is fine?

 

WARNING 32-169: The quoted string currently being processed has 
   become more than 262 characters long.  You may have 
   unbalanced quotation marks.

 

If so, check out the QUOTELENMAX/NOQUOTELENMAX system option. This option is particularly appropriate when you have long text strings in, for example, an ODS HTML TEXT statement.

 

proc print data=sashelp.shoes;
 title "Shoe Sales Data";
 ods html text="A very long text message . . . . . . that exceeds the length";
run;

Thanks to Don Henderson for sharing this tip on sasCommunity.org.

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!

Visit a random SAS tip This SAS Tips board is not open for replies or comments, but we welcome your feedback and questions. Have a question or comment about this tip? Start a new topic in one of our discussion boards, and reference this tip topic.
Discussion stats
  • 0 replies
  • 3903 views
  • 1 like
  • 1 in conversation