<?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: Ranges in custom format in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648801#M194428</link>
    <description>&lt;P&gt;Thank you for the reply. It is much clearer now. My question seems so stupid now that I understand the answer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 19 May 2020 11:31:21 GMT</pubDate>
    <dc:creator>mintbit</dc:creator>
    <dc:date>2020-05-19T11:31:21Z</dc:date>
    <item>
      <title>Ranges in custom format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648767#M194405</link>
      <description>&lt;P&gt;Can someone please explain this a little further? Is there a greater than symbol in a?&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Which of the following does not have proper syntax for specifying a range in the VALUE statement?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="inline"&gt;&amp;nbsp;&lt;EM&gt;a.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;500&amp;gt;-700&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="inline"&gt;&amp;nbsp;&lt;EM&gt;b.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;500-&amp;lt;700&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="inline"&gt;&amp;nbsp;&lt;EM&gt;c.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;'A'-'C'&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;PRE class="inline"&gt;&amp;nbsp;&lt;EM&gt;d.&lt;/EM&gt;&amp;nbsp;&amp;nbsp;'Horse'-'Mouse'&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Your answer:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#003399"&gt;b&lt;/FONT&gt;&lt;BR /&gt;Correct answer:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#003399"&gt;a&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The greater than symbol is not valid for a range. The less than symbol can be used after the starting value or before the ending value.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 06:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648767#M194405</guid>
      <dc:creator>mintbit</dc:creator>
      <dc:date>2020-05-19T06:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges in custom format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648774#M194409</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318282"&gt;@mintbit&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By default, a simple hyphen (-) means that boundaries are included.&lt;/P&gt;
&lt;P&gt;To exclude them, you can use the inferior sign: &amp;lt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;500&amp;gt;-700 &lt;FONT color="#FF0000"&gt;is not a proper syntax&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;500-700 &lt;FONT color="#3366FF"&gt;is equivalent to [500;700]&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;500-&amp;lt;700 &lt;FONT color="#3366FF"&gt;is equivalent to [500;700[&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;500&amp;lt;-700 &lt;FONT color="#3366FF"&gt;is equivalent to ]500;700]&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;500&amp;lt;-&amp;lt;700 &lt;FONT color="#3366FF"&gt;is equivalent to ]500;700[&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Best,&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 07:30:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648774#M194409</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-19T07:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges in custom format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648793#M194423</link>
      <description>&lt;P&gt;This:&lt;/P&gt;
&lt;PRE&gt;&amp;gt;&lt;/PRE&gt;
&lt;P&gt;is a "greater than" symbol.&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 10:34:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648793#M194423</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-05-19T10:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges in custom format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648801#M194428</link>
      <description>&lt;P&gt;Thank you for the reply. It is much clearer now. My question seems so stupid now that I understand the answer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 11:31:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Ranges-in-custom-format/m-p/648801#M194428</guid>
      <dc:creator>mintbit</dc:creator>
      <dc:date>2020-05-19T11:31:21Z</dc:date>
    </item>
  </channel>
</rss>

