<?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: Percentage Informat in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688342#M209079</link>
    <description>&lt;P&gt;It would have been more helpful if you had included the data.&amp;nbsp; I am assuming there are "%" in the&amp;nbsp;&lt;SPAN&gt;Acceptance&amp;nbsp;variable.&amp;nbsp; Since you are reading it with a "$", it is coming in as a string and this comparison will not work.&amp;nbsp; You need to use a percent informat like&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;percent5.&lt;/PRE&gt;
&lt;P&gt;So something like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA University;

INFILE datalines DLM=',' DSD ;
informat Acceptance percent5. cost dollar6.2;
INPUT School :$40. State $ Location :$15. GradRate $ Cost $ Acceptance  Undergrad $;

datalines;
MySchool,WA,Seattle,3,$300.23,%15,29
YourSchool,WA,Tacoma,3,$400.23,%20,29
;

RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 01 Oct 2020 20:16:46 GMT</pubDate>
    <dc:creator>CurtisMackWSIPP</dc:creator>
    <dc:date>2020-10-01T20:16:46Z</dc:date>
    <item>
      <title>Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688332#M209072</link>
      <description>&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;I am trying to run this code but it won't recognize the percentages so every answer is coming out at Yes for selective.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt; University;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;INFILE&lt;/SPAN&gt; 'c:/Users/sharvey8/Desktop/University(1).txt' &lt;SPAN class="s2"&gt;DLM&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;'09'X &lt;SPAN class="s2"&gt;DSD&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;FIRSTOBS&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;INPUT&lt;/SPAN&gt; School :&lt;SPAN class="s4"&gt;$40.&lt;/SPAN&gt; State $ Location :&lt;SPAN class="s4"&gt;$15.&lt;/SPAN&gt; GradRate $ Cost $ Acceptance $ Undergrad $;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;PRINT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;DATA&lt;/SPAN&gt;=University;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt; University;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;set&lt;/SPAN&gt; University;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;IF&lt;/SPAN&gt; Acceptance &amp;lt;= &lt;SPAN class="s4"&gt;&lt;STRONG&gt;25&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;THEN&lt;/SPAN&gt; Selective=&lt;SPAN class="s5"&gt;'Yes'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;ELSE&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;IF&lt;/SPAN&gt; Acceptance &amp;gt; &lt;SPAN class="s4"&gt;&lt;STRONG&gt;25&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;THEN&lt;/SPAN&gt; Selective=&lt;SPAN class="s5"&gt;'No'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;;&lt;/P&gt;&lt;P class="p4"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;PRINT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;DATA&lt;/SPAN&gt;=University;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 19:55:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688332#M209072</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T19:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688339#M209077</link>
      <description>&lt;OL&gt;
&lt;LI&gt;The variable acceptance was read in a character variable. Math and aggregate calculations cannot be done on a character variable. Either change that in the INPUT statement based on your input data (not shown so we don't know) or convert it after the fact in the data step.&lt;/LI&gt;
&lt;LI&gt;Percentages are often represented as between 0 and 1 numerically, where 25% is really 0.25. Check the formatted and underlying value of the variable you want to analyze.&lt;/LI&gt;
&lt;LI&gt;Do not code using the same data set name in the DATA and SET statement. This overwrites your data and it makes it harder to debug and find issues.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;You may need to tweak the informat to read in the percentages correctly but this is likely close to what you need. I would recommend you fix the data at the import stage though, not do a conversion after the fact if possible. It's a cleaner method.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*new data set name on the output;
DATA University_Categorized;
set University;

*convert to numeric;
acceptance_num = input(acceptance, percent12.);

*categorize;
IF acceptance_num &amp;lt;= 0.25 THEN Selective='Yes';
ELSE IF acceptance_num &amp;gt; 0.25 THEN Selective='No';

run;

  
PROC PRINT DATA=University_Categorized;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350299"&gt;@sharvey8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;I am trying to run this code but it won't recognize the percentages so every answer is coming out at Yes for selective.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt; University;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;INFILE&lt;/SPAN&gt; 'c:/Users/sharvey8/Desktop/University(1).txt' &lt;SPAN class="s2"&gt;DLM&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;'09'X &lt;SPAN class="s2"&gt;DSD&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;FIRSTOBS&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;INPUT&lt;/SPAN&gt; School :&lt;SPAN class="s4"&gt;$40.&lt;/SPAN&gt; State $ Location :&lt;SPAN class="s4"&gt;$15.&lt;/SPAN&gt; GradRate $ Cost $ Acceptance $ Undergrad $;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;PRINT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;DATA&lt;/SPAN&gt;=University;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p4"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt; University;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;set&lt;/SPAN&gt; University;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;IF&lt;/SPAN&gt; Acceptance &amp;lt;= &lt;SPAN class="s4"&gt;&lt;STRONG&gt;25&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;THEN&lt;/SPAN&gt; Selective=&lt;SPAN class="s5"&gt;'Yes'&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;ELSE&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;IF&lt;/SPAN&gt; Acceptance &amp;gt; &lt;SPAN class="s4"&gt;&lt;STRONG&gt;25&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;THEN&lt;/SPAN&gt; Selective=&lt;SPAN class="s5"&gt;'No'&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P class="p4"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;PRINT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;DATA&lt;/SPAN&gt;=University;&lt;/P&gt;
&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688339#M209077</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-01T20:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688342#M209079</link>
      <description>&lt;P&gt;It would have been more helpful if you had included the data.&amp;nbsp; I am assuming there are "%" in the&amp;nbsp;&lt;SPAN&gt;Acceptance&amp;nbsp;variable.&amp;nbsp; Since you are reading it with a "$", it is coming in as a string and this comparison will not work.&amp;nbsp; You need to use a percent informat like&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;percent5.&lt;/PRE&gt;
&lt;P&gt;So something like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA University;

INFILE datalines DLM=',' DSD ;
informat Acceptance percent5. cost dollar6.2;
INPUT School :$40. State $ Location :$15. GradRate $ Cost $ Acceptance  Undergrad $;

datalines;
MySchool,WA,Seattle,3,$300.23,%15,29
YourSchool,WA,Tacoma,3,$400.23,%20,29
;

RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:16:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688342#M209079</guid>
      <dc:creator>CurtisMackWSIPP</dc:creator>
      <dc:date>2020-10-01T20:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688346#M209081</link>
      <description>&lt;P&gt;When I change the percentage informat like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt; University;&lt;/P&gt;&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;INFILE&lt;/SPAN&gt; 'c:/Users/sharvey8/Desktop/University(1).txt' &lt;SPAN class="s2"&gt;DLM&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;'09'X &lt;SPAN class="s2"&gt;DSD&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;FIRSTOBS&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;INPUT&lt;/SPAN&gt; School :&lt;SPAN class="s4"&gt;$40.&lt;/SPAN&gt; State $ Location :&lt;SPAN class="s4"&gt;$15.&lt;/SPAN&gt; GradRate $ Cost $ Acceptance &lt;SPAN class="s4"&gt;percent5.&lt;/SPAN&gt; Undergrad $;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p4"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;&lt;STRONG&gt;PRINT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;DATA&lt;/SPAN&gt;=University;&lt;/P&gt;&lt;P class="p3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN class="s3"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p3"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p3"&gt;&lt;SPAN class="s3"&gt;I get this&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-10-01 at 4.19.48 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50087iC8B73658DEE68B6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-10-01 at 4.19.48 PM.png" alt="Screen Shot 2020-10-01 at 4.19.48 PM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688346#M209081</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T20:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688350#M209082</link>
      <description>&lt;P&gt;What does the data in that field look like?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:28:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688350#M209082</guid>
      <dc:creator>CurtisMackWSIPP</dc:creator>
      <dc:date>2020-10-01T20:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688352#M209083</link>
      <description>Show your log, it will have the information needed to debug this. You likely need a different informat.</description>
      <pubDate>Thu, 01 Oct 2020 20:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688352#M209083</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-01T20:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688353#M209084</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-10-01 at 4.29.37 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50088i54064436D04BC336/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-10-01 at 4.29.37 PM.png" alt="Screen Shot 2020-10-01 at 4.29.37 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:30:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688353#M209084</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T20:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688356#M209086</link>
      <description>&lt;P&gt;My log does not have anything weird popping up as an error.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-10-01 at 4.31.23 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50089i83E1E81BE5A74316/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-10-01 at 4.31.23 PM.png" alt="Screen Shot 2020-10-01 at 4.31.23 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:31:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688356#M209086</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T20:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688358#M209088</link>
      <description>&lt;P&gt;From the data import step? There's no errors there? You just showed the log from the PROC PRINT not the data import step.&lt;/P&gt;
&lt;P&gt;And please post it as text, not an image.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350299"&gt;@sharvey8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My log does not have anything weird popping up as an error.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-10-01 at 4.31.23 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50089i83E1E81BE5A74316/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-10-01 at 4.31.23 PM.png" alt="Screen Shot 2020-10-01 at 4.31.23 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688358#M209088</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-01T20:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688360#M209089</link>
      <description>I got this:&lt;BR /&gt;&lt;BR /&gt;Undergrad=974 _ERROR_=1 _N_=20&lt;BR /&gt;NOTE: 50 records were read from the infile 'c:/Users/sharvey8/Desktop/University(1).txt'.&lt;BR /&gt;The minimum record length was 44.&lt;BR /&gt;The maximum record length was 86.&lt;BR /&gt;NOTE: The data set WORK.UNIVERSITY has 50 observations and 7 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.07 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Oct 2020 20:42:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688360#M209089</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T20:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688361#M209090</link>
      <description>20 CHAR Indiana University-Bloomington.IN.Bloomington.78%.$13,428.77%.32991 67&lt;BR /&gt;ZONE 4666666256676776772466666667660440466666667660332023323330332033333&lt;BR /&gt;NUMR 9E491E105E96523949D2CFFD9E74FE99E92CFFD9E74FE97859413C4289775932991&lt;BR /&gt;School=Indiana University-Bloomington State=IN Location=Bloomington GradRate=. Cost=13,428&lt;BR /&gt;Acceptance=. Undergrad=2991 _ERROR_=1 _N_=19&lt;BR /&gt;NOTE: Invalid data for GradRate in line 21 27-31.&lt;BR /&gt;NOTE: Invalid data for Acceptance in line 21 39-43&lt;BR /&gt;&lt;BR /&gt;Assuming there is something wrong with my GradRate and Acceptance.</description>
      <pubDate>Thu, 01 Oct 2020 20:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688361#M209090</guid>
      <dc:creator>sharvey8</dc:creator>
      <dc:date>2020-10-01T20:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage Informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688363#M209092</link>
      <description>I would have expected that to have much more in it.</description>
      <pubDate>Thu, 01 Oct 2020 20:46:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Percentage-Informat/m-p/688363#M209092</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-01T20:46:53Z</dc:date>
    </item>
  </channel>
</rss>

