<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Inserting white space right in the start of a code flow? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726566#M225778</link>
    <description>Those are not errors in your code, they're from the SAS automatic code, you can ignore them. &lt;BR /&gt;&lt;BR /&gt;This goes back to the constant question asked last week. &lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/what-does-the-D-mean/m-p/724666" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/what-does-the-D-mean/m-p/724666&lt;/A&gt;&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 characters long.  You might have unbalanced quotation &lt;BR /&gt;      marks.&lt;BR /&gt;&lt;BR /&gt;SAS Constants - documentation link&lt;BR /&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lrcon&amp;amp;docsetTarget=p0cq7f0icfjr8vn19vyunwmmsl7m.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lrcon&amp;amp;docsetTarget=p0cq7f0icfjr8vn19vyunwmmsl7m.htm&amp;amp;locale=en&lt;/A&gt;</description>
    <pubDate>Mon, 15 Mar 2021 22:25:02 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-03-15T22:25:02Z</dc:date>
    <item>
      <title>Inserting white space right in the start of a code flow?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726553#M225769</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;Today I created a code flow for autoexec code. However, when I run the first code about a macro as below, I saw some notes about white space as the log below, could you please help me to sort it out?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*quickly assign means name*/
%macro Means (dataset = 
              ,stats_list = );

proc means data= &amp;amp;dataset &amp;amp;stats_list;
title "MEANS of &amp;amp;dataset";
run;

%mend Means;
/*eg: %Means(sashelp.class,n nmiss);*/
%Means(dataset=sashelp.class, stats_list =n nmiss);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The log is as below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Normal'
                                        _
                                        49
3        ! ;
4          %LET _CLIENTPROCESSFLOWNAME='Autoexec_code'
                                                     ___________________________
                                                     49
4        ! ;
5          %LET _CLIENTPROJECTPATH='C:\Users\pnguyen\OneDrive - Massey University\SAS\All SAS flows_since 29Dec2020.egp'

_______________________________                                                                                                     
                                                                                                                       49
5        ! ;
6          %LET _CLIENTPROJECTPATHHOST='IT082760'
                                                ___________________________
                                                49
6        ! ;
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space 
             between a quoted string and the succeeding identifier is recommended.
7          %LET _CLIENTPROJECTNAME='All SAS flows_since 29Dec2020.egp';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=SVG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
NOTE: The quoted string currently being processed has become more than 262 characters long.  You might have unbalanced quotation 
      marks.
14         %macro HTML5AccessibleGraphSupported;
7          %LET _CLIENTPROJECTNAME='All SAS flows_since 29Dec2020.egp';
                                                                     __
                                                                     49
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space 
             between a quoted string and the succeeding identifier is recommended.

15             %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;
16         %mend;
17         FILENAME EGHTML TEMP;
18         ODS HTML5(ID=EGHTML) FILE=EGHTML
19             OPTIONS(BITMAP_MODE='INLINE'
                                          _
                                          49
19       ! )
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release.  Inserting white space 
             between a quoted string and the succeeding identifier is recommended.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 21:53:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726553#M225769</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-03-15T21:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting white space right in the start of a code flow?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726566#M225778</link>
      <description>Those are not errors in your code, they're from the SAS automatic code, you can ignore them. &lt;BR /&gt;&lt;BR /&gt;This goes back to the constant question asked last week. &lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/what-does-the-D-mean/m-p/724666" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/what-does-the-D-mean/m-p/724666&lt;/A&gt;&lt;BR /&gt;NOTE: The quoted string currently being processed has become more than 262 characters long.  You might have unbalanced quotation &lt;BR /&gt;      marks.&lt;BR /&gt;&lt;BR /&gt;SAS Constants - documentation link&lt;BR /&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lrcon&amp;amp;docsetTarget=p0cq7f0icfjr8vn19vyunwmmsl7m.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lrcon&amp;amp;docsetTarget=p0cq7f0icfjr8vn19vyunwmmsl7m.htm&amp;amp;locale=en&lt;/A&gt;</description>
      <pubDate>Mon, 15 Mar 2021 22:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726566#M225778</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-03-15T22:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting white space right in the start of a code flow?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726594#M225794</link>
      <description>&lt;P&gt;You appear to have unbalanced quotes somewhere.&lt;/P&gt;
&lt;P&gt;You also appear to be using some tool for submitting your code to SAS like SAS/Studio or Enterprise Guide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First try re-starting your SAS session and see if the unbalanced quotes go away.&amp;nbsp; You should be able to do that without closing the tool you are using to submit the code to SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that does not fix the issue then either your AUTOEXEC file or some other block of code that your user interface is inserting has the unbalanced quotes.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 00:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Inserting-white-space-right-in-the-start-of-a-code-flow/m-p/726594#M225794</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-03-16T00:54:17Z</dc:date>
    </item>
  </channel>
</rss>

