<?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>andreas_lds Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>andreas_lds Tracker</description>
    <pubDate>Sun, 10 May 2026 14:06:09 GMT</pubDate>
    <dc:date>2026-05-10T14:06:09Z</dc:date>
    <item>
      <title>Re: Assign variable values to time intervals</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Assign-variable-values-to-time-intervals/m-p/987461#M43833</link>
      <description>&lt;P&gt;Expected results, data and description don't match.&lt;/P&gt;
&lt;P&gt;In the first observation, from 9Jan2024 to 11Oct2024 is nine month, why do you expect 3M?&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 11:18:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Assign-variable-values-to-time-intervals/m-p/987461#M43833</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-05-07T11:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with first.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-first/m-p/987003#M380018</link>
      <description>&lt;P&gt;It is not clear what you expect to see in the resulting dataset. Here's an example using sashelp.class, sorted by sex and age to display what "not first.variable means:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=sashelp.class out=work.class_sorted;
    by Sex Age;
run;

data work.selection;
    set work.class_sorted;
    by Sex Age;
    
    not_first = not first.Age;
    
run;
 &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 05:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-first/m-p/987003#M380018</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-04-30T05:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: display of datasets in the data library with timestamp in property</title>
      <link>https://communities.sas.com/t5/SAS-Viya/display-of-datasets-in-the-data-library-with-timestamp-in/m-p/986641#M3061</link>
      <description>&lt;P&gt;I don't think this could be done at all, because afaik there aren't any options to add information to the library list. SAS could add such an option, of course. You should contact sas tech support, maybe there is an option i don't see, or they could get in on the wish list for a future release.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2026 05:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/display-of-datasets-in-the-data-library-with-timestamp-in/m-p/986641#M3061</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-04-22T05:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in writing to text file using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-in-writing-to-text-file-using-put-statement/m-p/983074#M379454</link>
      <description>&lt;P&gt;The code posted does not make any sense at all. Please post the complete data step / macro.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 07:30:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-in-writing-to-text-file-using-put-statement/m-p/983074#M379454</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-02-05T07:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Find client number</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-client-number/m-p/982917#M379415</link>
      <description>&lt;P&gt;Most likely i overlook a detail of the specs. I am not sure what "As I said the client number should be matching to all Id numbers under the application (This is the criteria)" means exactly: why is "033948333" mapped to 1 and not to 3?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If always the first appearance in tbl2 defined the correct mapping from&amp;nbsp;ID_number to client_number, a feature of hash objects can be used to simplify the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.want;
    set work.tbl1;

    if _n_ = 1 then do;
        if 0 then set work.tbl2; /* adds variables to the pdv */

        declare hash h(dataset: "work.tbl2", ordered: "yes");
        h.defineKey("ID_number");
        h.defineData("client_number");
        h.defineDone();
    end;

    if h.find() = 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Feb 2026 11:57:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-client-number/m-p/982917#M379415</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-02-03T11:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: problem with ODS in SAS EG 8.3</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/problem-with-ODS-in-SAS-EG-8-3/m-p/982629#M46386</link>
      <description>&lt;P&gt;One of the interesting differences between EG 7.x and 8.x is the change of the default output type. In the earlier version it was SAS Report, beginning with 8.x it is html.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can't provide the code used, please provide at least some more information about what the code does.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 06:46:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/problem-with-ODS-in-SAS-EG-8-3/m-p/982629#M46386</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-01-29T06:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Sleep/Rest during loops AND FREE all the resouce[not freeze the panel]?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Sleep-Rest-during-loops-AND-FREE-all-the-resouce-not/m-p/982415#M379318</link>
      <description>&lt;P&gt;Please post the code "taking hours to finish". Recent versions of SAS Enterprise Guide don't freeze while executing code, which client do you use?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 07:02:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Sleep-Rest-during-loops-AND-FREE-all-the-resouce-not/m-p/982415#M379318</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-01-26T07:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: problem with where clause on numeric</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-where-clause-on-numeric/m-p/981955#M379211</link>
      <description>&lt;P&gt;The number is to large. See&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostunx/p12zsdbylnn6c2n1i48z7djr6uzo.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostunx/p12zsdbylnn6c2n1i48z7djr6uzo.htm&lt;/A&gt;&amp;nbsp;for details.&lt;/P&gt;
&lt;P&gt;The largest integer sas can represent exactly is&amp;nbsp;9,007,199,254,740,992.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jan 2026 14:23:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-where-clause-on-numeric/m-p/981955#M379211</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2026-01-14T14:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Code to search for .zipx files in a Windows directory and export list to Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-search-for-zipx-files-in-a-Windows-directory-and-export/m-p/980942#M379014</link>
      <description>&lt;P&gt;Do you have to use sas to solve the issue?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Powershell i would use:&lt;/P&gt;
&lt;PRE&gt;Get-ChildItem &amp;lt;PATH&amp;gt;*.xlsx -Recurse | Select-Object -Property FullName | Export-Csv -Path file_list.csv -NoTypeInformation -Encoding UTF8&lt;/PRE&gt;
&lt;P&gt;Output is not a native excel-file, but should run faster.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 06:01:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-search-for-zipx-files-in-a-Windows-directory-and-export/m-p/980942#M379014</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-12-18T06:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: order of data sets that appear in window</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-of-data-sets-that-appear-in-window/m-p/980523#M378953</link>
      <description>&lt;P&gt;Two chars are missing in my previous post:&lt;/P&gt;
&lt;P&gt;Can&lt;FONT size="5" color="#FF6600"&gt;'t&lt;/FONT&gt; replicate your problem with EG 8.5 or 8.6 - maybe a problem with an older version or with some option set in EG itself.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 07:20:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-of-data-sets-that-appear-in-window/m-p/980523#M378953</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-12-10T07:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: order of data sets that appear in window</title>
      <link>https://communities.sas.com/t5/SAS-Programming/order-of-data-sets-that-appear-in-window/m-p/980462#M378944</link>
      <description>&lt;P&gt;Can replicate your problem with EG 8.5 or 8.6 - maybe a problem with an older version or with some option set in EG itself.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 12:54:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/order-of-data-sets-that-appear-in-window/m-p/980462#M378944</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-12-09T12:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to Save Out PLOT from PROC SGPLOT into A PIC FILE with explicit filename and location?!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Save-Out-PLOT-from-PROC-SGPLOT-into-A-PIC-FILE-with/m-p/979677#M378835</link>
      <description>&lt;P&gt;Hardly possible to suggest something useful without knowing the code of the macro.&lt;/P&gt;
&lt;P&gt;The ods gpath option may be used to set the location images are stored, see&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatug/p0cmojsdkiab8cn1k2qk3rp3a8s0.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatug/p0cmojsdkiab8cn1k2qk3rp3a8s0.htm&lt;/A&gt;&amp;nbsp;for details.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 07:12:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Save-Out-PLOT-from-PROC-SGPLOT-into-A-PIC-FILE-with/m-p/979677#M378835</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-11-28T07:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Improving performance of a CSV export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Improving-performance-of-a-CSV-export/m-p/979426#M378789</link>
      <description>&lt;P&gt;Please post proc contents of the dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 11:42:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Improving-performance-of-a-CSV-export/m-p/979426#M378789</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-11-24T11:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: the highest result needs to be selected if ID has more than one value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/the-highest-result-needs-to-be-selected-if-ID-has-more-than-one/m-p/979110#M378736</link>
      <description>&lt;P&gt;Easy to solve after PDL1 has been converted to a numeric variable.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    invalue pdl2num
        "N/A" = .
        "&amp;lt;1" = 0
        other = [best.]
    ;
    value pdlprio
        . = 0
        0 = 1
        1 - 49 = 3
        50 - HIGH = 4
    ;
run;

data fixed;
    set have(rename= (pdl1 = pdl1_str));

    pdl1 = input(pdl1_str, pdl2num.);
    priority = put(pdl1, pdlprio.);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Use the code posted by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;&amp;nbsp;to get the final result.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/the-highest-result-needs-to-be-selected-if-ID-has-more-than-one/m-p/979110#M378736</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-11-19T11:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: message -Large results were detected</title>
      <link>https://communities.sas.com/t5/SAS-Programming/message-Large-results-were-detected/m-p/978916#M378705</link>
      <description>&lt;P&gt;You need to disable the creation of the result in Enterprise Guide, and depends on the selected result formats&amp;nbsp; in then config of EG.&lt;/P&gt;
&lt;P&gt;To solve the issue open then properties of the program in EG, select "Results", activate "Custom..." and uncheck everything.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 06:54:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/message-Large-results-were-detected/m-p/978916#M378705</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-11-17T06:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Storage full error</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Storage-full-error/m-p/978795#M2773</link>
      <description>&lt;P&gt;To solve this error contact the responsible system administrator.&amp;nbsp; Anybody else is hardly able to fix a config issue.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 08:43:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Storage-full-error/m-p/978795#M2773</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-11-13T08:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Copy the file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Copy-the-file/m-p/977984#M378540</link>
      <description>&lt;P&gt;Things to check/do:&lt;/P&gt;
&lt;P&gt;- Is sas running local or on a server? If it is running on a server, you can't copy local files.&lt;/P&gt;
&lt;P&gt;- Is xcmd enabled?&lt;/P&gt;
&lt;P&gt;- Change noxwait to xwait.&lt;/P&gt;
&lt;P&gt;- Post the log.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 11:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Copy-the-file/m-p/977984#M378540</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-10-28T11:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql view vs table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-sql-view-vs-table/m-p/975201#M378061</link>
      <description>&lt;P&gt;First thought: looks like a bug.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second thought: it is logical that the option is ignored.&lt;/P&gt;
&lt;P&gt;The options inobs and outobs are processed during the execution of proc sql, but are not included in the code of the created views. The contents of a view is created on accessing the view. Should be noted in the documentation, though.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 05:27:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-sql-view-vs-table/m-p/975201#M378061</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-09-17T05:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: data sets in work-order</title>
      <link>https://communities.sas.com/t5/SAS-Programming/data-sets-in-work-order/m-p/975047#M378033</link>
      <description>&lt;P&gt;SAS Studio, Enterprise Guide, Display Manager and even the sas-addon for VS Code display library contents always in alphabetical order. But if you should have access to your work-folder with Windows Explorer, too, so that you use it to display datasets in the required order.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 05:30:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/data-sets-in-work-order/m-p/975047#M378033</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-09-15T05:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide multiple values in Prompt</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-multiple-values-in-Prompt/m-p/974424#M46161</link>
      <description>&lt;P&gt;Using the idea provided by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;the following code creates a dataset using the names entered in the prompt:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.selected_customer;
    length
        cust_name $ 50
    ;

    %if &amp;amp;resident_customer_count = 1 %then %do;
        cust_name = "&amp;amp;resident_customer";
        output;
    %end;
    %else %do;
        do i = 1 to &amp;amp;resident_customer_count;
            cust_name = symget(cats("resident_customer", i));
            output;
        end;
    %end;

    drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And a small demonstration of the usage together with sashelp.class, because i am to lazy to make up a dataset with four name-variables:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
    select c.*
        from sashelp.class as c, work.selected_customer as s
            where find(c.Name, s.cust_Name, 'it')
    ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Sep 2025 13:09:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-multiple-values-in-Prompt/m-p/974424#M46161</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2025-09-08T13:09:38Z</dc:date>
    </item>
  </channel>
</rss>

