<?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: what is the difference between in1, in1.a and in1..a; in SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374260#M89600</link>
    <description>&lt;P&gt;Just out of curiosity: where did you get the notion that there is such a thing as "in1..a" in SAS?&lt;/P&gt;</description>
    <pubDate>Sun, 09 Jul 2017 14:10:46 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-07-09T14:10:46Z</dc:date>
    <item>
      <title>what is the difference between in1, in1.a and in1..a; in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374241#M89588</link>
      <description>&lt;P&gt;what is the difference between in1, in1.a and in1..a; in SAS.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2017 09:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374241#M89588</guid>
      <dc:creator>abhityagi</dc:creator>
      <dc:date>2017-07-09T09:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between in1, in1.a and in1..a; in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374244#M89589</link>
      <description>?&lt;BR /&gt;Please exemplify!</description>
      <pubDate>Sun, 09 Jul 2017 10:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374244#M89589</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-07-09T10:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between in1, in1.a and in1..a; in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374248#M89590</link>
      <description>&lt;P&gt;in1 is just a name of something. &amp;nbsp;It's probably a variable name, but could be anything that would be named within a SAS program (a variable, a data set , an array). &amp;nbsp;So its meaning depends on the context within the program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in1.a also depends on context. &amp;nbsp;In most cases, it is the data set A, stored within the library IN1. &amp;nbsp;But within SQL, it is the variable A stored within the data set IN1. &amp;nbsp;There may be other possibilities, but those are the main ones.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in1..a doesn't exist in SAS. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2017 12:20:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374248#M89590</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-07-09T12:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between in1, in1.a and in1..a; in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374260#M89600</link>
      <description>&lt;P&gt;Just out of curiosity: where did you get the notion that there is such a thing as "in1..a" in SAS?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2017 14:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374260#M89600</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-07-09T14:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between in1, in1.a and in1..a; in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374261#M89601</link>
      <description>&lt;P&gt;The place in SAS where you might see double periods like that would be when using macro variables to generate a string that needs to have a period in it. &amp;nbsp;For example if you had a macro variable than contained the library name and you wanted to generate a reference to particual dataset in that library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydata 'my path';
%let libref=mydata;
proc print data=&amp;amp;libref..myds;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first period is used by the macro processor to indicate the end of the macro variable name. So the result of "&amp;amp;libref..myds" is the string "mydata.myds".&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2017 14:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/what-is-the-difference-between-in1-in1-a-and-in1-a-in-SAS/m-p/374261#M89601</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-07-09T14:15:15Z</dc:date>
    </item>
  </channel>
</rss>

