<?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: Data step Label name in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645576#M22043</link>
    <description>&lt;P&gt;Just a precision:&lt;/P&gt;
&lt;P&gt;if you omit the double dot (&lt;STRONG&gt;&amp;amp;lib_mylib&lt;FONT color="#000000"&gt;&lt;FONT color="#FF0000"&gt;.&lt;/FONT&gt;start_somethings)&lt;/FONT&gt;&lt;/STRONG&gt;, SAS will look for the dataset&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;mylibstart_somethings &lt;/STRONG&gt;&lt;FONT color="#000000"&gt;in the WORK library as no library is specified.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;Best,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2020 13:17:18 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-05-06T13:17:18Z</dc:date>
    <item>
      <title>Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645569#M22039</link>
      <description>&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sorry for my very dummy questions but I'm newbie user at first steps with sas programming.&lt;/P&gt;&lt;P&gt;Can anyone tell me what does this macro code fragment?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%let lib_mylib=&amp;amp;scan(myLib,1,.);
data &amp;amp;lib_mylib..start_somethings;
  field='';
run;&lt;/PRE&gt;&lt;P&gt;MyLib is a registered sas library that point to database schema oracle.&lt;/P&gt;&lt;P&gt;My doubt is on ".." (dot dot) characher in data step label (&amp;amp;lib_mylib..start_somethings).&lt;/P&gt;&lt;P&gt;I googled for long time but I not found anything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me to understand what means?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 16:41:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645569#M22039</guid>
      <dc:creator>vinpres</dc:creator>
      <dc:date>2020-05-06T16:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645575#M22042</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/322464"&gt;@vinpres&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the %LET statement, you declare a macrovariable&amp;nbsp;&lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;lib_mylib&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;and assign the value &lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;myLib&lt;/STRONG&gt;&lt;/FONT&gt; to it.&lt;/P&gt;
&lt;P&gt;You can then refer to this macrovariable in the next steps of your program by using an ampersand (&amp;amp;) and a dot (.) : &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;&amp;amp;lib_mylib.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;So here, writing&amp;nbsp;&lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;&amp;amp;lib_mylib.&lt;FONT color="#000000"&gt;.start_somethings &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#000000"&gt;is strictly equivalent to writing &lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;mylib&lt;/FONT&gt;.start_somethings&lt;/STRONG&gt;, which refers to&amp;nbsp;the dataset&amp;nbsp;&lt;STRONG&gt;start_somethings&lt;/STRONG&gt; in the SAS library&amp;nbsp;&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;mylib &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#3366FF"&gt;&lt;FONT color="#000000"&gt;that you may have defined in a LIBNAME statement&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;&lt;FONT color="#000000"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;You can see the macrovariable as a kind of 'alias', meaning that if you change the value of the macrovariable in the %LET statement, SAS will automatically update the reference in the program.&lt;/P&gt;
&lt;PRE&gt;%let lib_mylib=myLib;
data &amp;amp;lib_mylib..start_somethings;
  field='';
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Hope it's clear.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 13:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645575#M22042</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-06T13:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645576#M22043</link>
      <description>&lt;P&gt;Just a precision:&lt;/P&gt;
&lt;P&gt;if you omit the double dot (&lt;STRONG&gt;&amp;amp;lib_mylib&lt;FONT color="#000000"&gt;&lt;FONT color="#FF0000"&gt;.&lt;/FONT&gt;start_somethings)&lt;/FONT&gt;&lt;/STRONG&gt;, SAS will look for the dataset&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;mylibstart_somethings &lt;/STRONG&gt;&lt;FONT color="#000000"&gt;in the WORK library as no library is specified.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;FONT color="#000000"&gt;Best,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 13:17:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645576#M22043</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-06T13:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645579#M22045</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the response.&lt;/P&gt;&lt;P&gt;Ok, perfect. It' very clear what you say and&amp;nbsp;your explanation explanation has reassured me.&lt;/P&gt;&lt;P&gt;But I have yet a doubt related to the dataser &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;start_somethings&lt;/STRONG&gt;&lt;/FONT&gt; at the right of &lt;STRONG&gt;&amp;amp;lib_mylib&lt;FONT color="#000000"&gt;&lt;FONT color="#FF0000"&gt;.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I searched anywhere, on database, sas library, file system but I have found nothing about it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sas-author-rank"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 May 2020 14:08:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645579#M22045</guid>
      <dc:creator>vinpres</dc:creator>
      <dc:date>2020-05-06T14:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645602#M22046</link>
      <description>&lt;P&gt;Your %let statement as posted will result in a WARNING:&lt;/P&gt;
&lt;PRE&gt; WARNING: Apparent symbolic reference SCAN not resolved.
 72         
 73         %let lib_mylib=&amp;amp;scan(myLib,1,.);
&lt;/PRE&gt;
&lt;P&gt;because you mistakenly used the ampersand instead of the percent sign when you tried to call the %SCAN macro function.&lt;/P&gt;
&lt;P&gt;Since your new macro variable is assigned the text as-is , it still causes the WARNING when displayed_&lt;/P&gt;
&lt;PRE&gt;  74         %put &amp;amp;lib_mylib.;
 WARNING: Apparent symbolic reference SCAN not resolved.
 &amp;amp;scan(myLib,1,.)
&lt;/PRE&gt;
&lt;P&gt;So you need to first fix that:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let lib_mylib=%scan(myLib,1,.);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;but this won't work either, as the text "myLib" contains no dot, so there's nothing to split with %SCAN:&lt;/P&gt;
&lt;PRE&gt; 73         %let lib_mylib=%scan(myLib,1,.);
 74         %put &amp;amp;lib_mylib.;
 myLib
&lt;/PRE&gt;
&lt;P&gt;So I guess you wanted to use a macro variable instead:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let lib_mylib=%scan(&amp;amp;myLib.,1,.);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But to see if this is can work as intended, we need to see how macro variable myLib is defined in the first place.&lt;/P&gt;
&lt;P&gt;Once your new macro variable lib_mylib holds a correct value, the following&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data &amp;amp;lib_mylib..start_somethings;
  field='';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;would create a new dataset there named start_somethings, with one variable (field) and one observation where field is empty.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 14:20:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645602#M22046</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-05-06T14:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645615#M22047</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot to both of you for the explanation.&lt;/P&gt;&lt;P&gt;But physically where I find the persistent dataset named start_somethings?&lt;/P&gt;&lt;P&gt;Is a persistent dataset stored in a file of the filesystems?&lt;/P&gt;&lt;P&gt;Or is it stored in a metadata table like sql table?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;So, my question is: where I find physically the persistent dataset named start_somethings? In the database or filesystem directory?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 14:48:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645615#M22047</guid>
      <dc:creator>vinpres</dc:creator>
      <dc:date>2020-05-06T14:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645618#M22048</link>
      <description>&lt;P&gt;Since it is created by your code, you can only find it once your code runs successfully. Before that, you won't be able to find it anywhere.&lt;/P&gt;
&lt;P&gt;So I suggest you correct your code as I mentioned, run it, and then post the whole log here by copy/pasting it into a window opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.png"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="Bildschirmfoto 2020-04-07 um 08.32.59.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 14:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645618#M22048</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-05-06T14:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645626#M22049</link>
      <description>&lt;P&gt;HI &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;following is the log of the code I run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vinpres_0-1588777868327.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39109iDE73F4C71F2B30BB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vinpres_0-1588777868327.png" alt="vinpres_0-1588777868327.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 15:11:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645626#M22049</guid>
      <dc:creator>vinpres</dc:creator>
      <dc:date>2020-05-06T15:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645631#M22050</link>
      <description>&lt;PRE&gt;%let lib_mylib=&amp;amp;scan(myLib,1,.);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is lib_mylib already pointing to an existing library? What does it resolve to?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run the following and post the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%let lib_mylib=&amp;amp;scan(myLib,1,.);&lt;BR /&gt;&lt;BR /&gt;%put My Library = &amp;amp;lib_mylib.;

proc datasets lib=&amp;amp;lib_mylib;
run;quit;&lt;/PRE&gt;
&lt;P&gt;I suspect you don't have a libname. FYI - this code does nothing at all, it creates an empty data set with a single empty variable.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 15:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645631#M22050</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-05-06T15:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645635#M22051</link>
      <description>&lt;P&gt;Let's just ignore the typos in your posted code and concentrate on the question.&lt;/P&gt;
&lt;P&gt;When you reference a macro variable you can use a period to let SAS know where the name of the macro variable ends.&amp;nbsp; You don't need the period when the next character in the program cannot be part of a macro variable name, like a space or a slash or parentheses.&amp;nbsp; But when the next character &lt;STRONG&gt;could&lt;/STRONG&gt; be part of the name then the period is required.&amp;nbsp; So if you write &amp;amp;MYMVAR_START then it is looking for a variable named MYMVAR_START. If you want it to instead look for MYMVAR then add the dot.&amp;nbsp; &amp;amp;MYMVAR._START.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case you want an actual period between the name of the libref and the name of the member.&amp;nbsp; So since first period will be used by the macro processor to know that you are done typing the macro variable name you need the &lt;STRONG&gt;second&lt;/STRONG&gt; one so that when SAS sees the generated code there is still a period between the libref and member name.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 15:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645635#M22051</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-05-06T15:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645638#M22052</link>
      <description>&lt;P&gt;Sorry, I suspect that we are going out of the topic.&lt;/P&gt;&lt;P&gt;The code that I showed in the above post is only as example and introduction for my questions.&lt;/P&gt;&lt;P&gt;Precisely, my question is:&lt;/P&gt;&lt;P&gt;Physically where I find the persistent dataset named that we create through a code like above?&lt;/P&gt;&lt;P&gt;Is a persistent dataset stored in a file of the filesystems?&lt;/P&gt;&lt;P&gt;Or is it stored in a metadata table like sql table?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;So, where I find physically the persistent dataset named start_somethings? In the database or filesystem directory?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 15:40:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645638#M22052</guid>
      <dc:creator>vinpres</dc:creator>
      <dc:date>2020-05-06T15:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645643#M22053</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/322464"&gt;@vinpres&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Sorry, I suspect that we are going out of the topic.&lt;/P&gt;
&lt;P&gt;The code that I showed in the above post is only as example and introduction for my questions.&lt;/P&gt;
&lt;P&gt;Precisely, my question is:&lt;/P&gt;
&lt;P&gt;Physically where I find the persistent dataset named that we create through a code like above?&lt;/P&gt;
&lt;P&gt;Is a persistent dataset stored in a file of the filesystems?&lt;/P&gt;
&lt;P&gt;Or is it stored in a metadata table like sql table?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;So, where I find physically the persistent dataset named start_somethings? In the database or filesystem directory?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It depends.&lt;/P&gt;
&lt;P&gt;If your libref is a simple SAS library that is pointing to a physical directory.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mylib '/mydirecotry';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then the dataset referenced by MYLIB.FRED is a physical file name fred.sas7bdat in the physical directory named /mydirectory.&amp;nbsp; Note that the extension used by SAS on the files that are SAS datasets have changed over the years and could change again in the future, but have consistently been sas7bdat for a number of years.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now if MYLIB is using some other libref engine then you need to check that engine for how it works.&amp;nbsp; If it is Oracle then it is a table in the schema that you pointed the libref to.&amp;nbsp; If it is the XLSX engine the it is a sheet in the workbook that you pointed the libref to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 16:14:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645643#M22053</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-05-06T16:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data step Label name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645658#M22054</link>
      <description>&lt;P&gt;PS.&amp;nbsp; None of your code or your clarifications of the question have anything to do with the concept of LABEL that you used in the subject line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Labels are completely different than names.&amp;nbsp; SAS allows you to attach labels to variables or datasets where you can enter longer free text descriptions.&amp;nbsp; The labels attached to a dataset are stored inside the dataset and have nothing to do with either the name of the dataset or the name of the physical file that SAS uses to store the dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 16:33:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Data-step-Label-name/m-p/645658#M22054</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-05-06T16:33:59Z</dc:date>
    </item>
  </channel>
</rss>

