<?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: Did I do something wrong with this format code? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495805#M130944</link>
    <description>&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;actually spelling was just a typo...&lt;/P&gt;&lt;P&gt;And thanks to your correction, I found that I missed the dot in my original code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for enlightening!&lt;/P&gt;</description>
    <pubDate>Fri, 14 Sep 2018 18:44:38 GMT</pubDate>
    <dc:creator>MonoLight</dc:creator>
    <dc:date>2018-09-14T18:44:38Z</dc:date>
    <item>
      <title>Did I do something wrong with this format code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495791#M130936</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I'm dealing with some troubles.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data have;
Input x1 x2;
Cards;
1 1
2 110
3 30
4 1010
5 20
6 3201
7 306
8 423
9 70912
;
Run;

Proc Format;
	value scalesss
	LOW -&amp;lt; 100 = 'more than 100'
	100 -&amp;lt; 1000 = 'less than 1000'
	1000 -&amp;lt; 10000 = 'less than 10000'
	10000 -&amp;lt; 50000 = 'less than 50000'
	50000-HIGH = 'more than 200000'
;
Run;

Data have2;
Set have;
format x2 scalesss;

Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I thought using format in Data was fine.&lt;/P&gt;&lt;P&gt;Did I miss something here?&lt;/P&gt;&lt;P&gt;It keeps saying something like, "printing type scalesss should be ended with numeral. this printing type is incorrect"(I got this note in Korean version, so not sure what English version should say).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for checking!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 18:40:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495791#M130936</guid>
      <dc:creator>MonoLight</dc:creator>
      <dc:date>2018-09-14T18:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Did I do something wrong with this format code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495794#M130939</link>
      <description>&lt;P&gt;get your vision(eyesight) checked lol&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;spelling&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data have;
Input x1 x2;
Cards;
1 1
2 110
3 30
4 1010
5 20
6 3201
7 306
8 423
9 70912
;
Run;

Proc Format;
	value scalesss
	LOW -&amp;lt; 100 = 'more than 100'
	100 -&amp;lt; 1000 = 'less than 1000'
	1000 -&amp;lt; 10000 = 'less than 10000'
	10000 -&amp;lt; 50000 = 'less than 50000'
	50000-HIGH = 'more than 200000'
;
Run;

Data have2;
Set have;
format x2 scalesss.;/*correction*/

Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Sep 2018 18:30:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495794#M130939</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-14T18:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Did I do something wrong with this format code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495796#M130941</link>
      <description>&lt;P&gt;You didn't spell the format properly.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data have2;
Set have;
format x2 scalesss.;

Run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 18:28:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495796#M130941</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-14T18:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Did I do something wrong with this format code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495805#M130944</link>
      <description>&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;actually spelling was just a typo...&lt;/P&gt;&lt;P&gt;And thanks to your correction, I found that I missed the dot in my original code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for enlightening!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 18:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495805#M130944</guid>
      <dc:creator>MonoLight</dc:creator>
      <dc:date>2018-09-14T18:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Did I do something wrong with this format code?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495806#M130945</link>
      <description>&lt;P&gt;Thank you for the checkup.&lt;/P&gt;&lt;P&gt;ss was typo, and I missed the dot in the original code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;God, it's hard to following with a book!&lt;/P&gt;&lt;P&gt;I should check descriptions harder.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 18:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Did-I-do-something-wrong-with-this-format-code/m-p/495806#M130945</guid>
      <dc:creator>MonoLight</dc:creator>
      <dc:date>2018-09-14T18:46:01Z</dc:date>
    </item>
  </channel>
</rss>

