<?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>leogaller Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>leogaller Tracker</description>
    <pubDate>Tue, 19 May 2026 13:50:28 GMT</pubDate>
    <dc:date>2026-05-19T13:50:28Z</dc:date>
    <item>
      <title>Re: For Var 1 break Var2 by all data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287937#M59297</link>
      <description>Many thanks Ballardw, your explanation was perfect! \o/</description>
      <pubDate>Thu, 28 Jul 2016 19:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287937#M59297</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-07-28T19:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: For Var 1 break Var2 by all data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287933#M59294</link>
      <description>&lt;P&gt;Hi Ballardw!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Have already brought the data into SAS?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Yes, the data is already in SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Do you need the original variable with multiple values when done?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Yes, I need, because later I will join the result dataset with another one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Are there any other variables to consider?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Not now. I just need these two right now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What to do if the column 2 variable is blank?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;There is &lt;STRONG&gt;no&lt;/STRONG&gt; blank values in variable 2 because I treated that situation when I was importing the data into SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Should there be any output (remove the record) or have the line basically output as is?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Yes, I need an output just with the 2 variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;BTW, the image of your example data seems to show a period between the values on the third row. Can that possibly occur?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Actually that is a comma, I want to break the data using that comma.&lt;/P&gt;
&lt;P&gt;For example, write the value o var1, if var2 has two values separated by comma, I want to repeat var1 for each value in var2 that are separated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your attention and support! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code for sample data:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample_data;
	input number $ PreExecution $20.;
	datalines;
	5044 5297,5367
	5055 5297,5367,5467
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;LeoGaller&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 19:35:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287933#M59294</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-07-28T19:35:57Z</dc:date>
    </item>
    <item>
      <title>For Var 1 break Var2 by all data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287905#M59284</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am very new in SAS Base programming, I would like of ideas about the following situation:&lt;/P&gt;
&lt;P&gt;I am importing an excel spreadsheet, and on&amp;nbsp;cell 1 I have the ID and on&amp;nbsp;cell 2 multiple values separated by ','.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I need is to repeat the value for cell 1 for all the values of cell 2 in different lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the example below:&lt;/P&gt;
&lt;P&gt;What I have&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4316i68CED7E4BC4BC171/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Exemplo.PNG" title="Exemplo.PNG" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I need&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4317iF0278847F9A65925/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Exemplo2.PNG" title="Exemplo2.PNG" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any ideas?&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;LeoGaller&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 18:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/For-Var-1-break-Var2-by-all-data/m-p/287905#M59284</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-07-28T18:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SAS metadata export type in DI</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270957#M7509</link>
      <description>Thank you!</description>
      <pubDate>Tue, 17 May 2016 12:43:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270957#M7509</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-17T12:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SAS metadata export type in DI</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270162#M7491</link>
      <description>&lt;P&gt;Hi LinusH!&lt;/P&gt;
&lt;P&gt;I need to export the metadata of some tables to use in Erwin data modeler.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to export tables metadata, located at the File Tab -&amp;gt; Export -&amp;gt; Metadata. Then I am getting the following error:&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3144iEEB1015818256BFA/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="NoExportTypes.png" title="NoExportTypes.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have consulted the administration of the SAS environment, but, no answers at this moment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Leonardo Galler&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 19:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270162#M7491</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-12T19:31:07Z</dc:date>
    </item>
    <item>
      <title>Configuring SAS metadata export type in DI</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270080#M7488</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try to export tables metadata from DI I am getting the following error:&lt;/P&gt;
&lt;P&gt;'No export types found. Please consult documentation on how to load export types.'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could not find in the documentation, any of you knows how to configure the export types in DI?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Leonardo Galler&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 14:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Configuring-SAS-metadata-export-type-in-DI/m-p/270080#M7488</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-12T14:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABTs in Oracle</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269575#M7480</link>
      <description>Thanks for your anwser LinusH!</description>
      <pubDate>Tue, 10 May 2016 21:07:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269575#M7480</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-10T21:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABTs in Oracle</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269574#M7479</link>
      <description>Thanks Tom, I will contact you! Best regards!</description>
      <pubDate>Tue, 10 May 2016 21:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269574#M7479</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-10T21:07:14Z</dc:date>
    </item>
    <item>
      <title>ABTs in Oracle</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269512#M7476</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I´m working on a client where some ABTs are huge, 5Tb for example. Those ABTs are not disponible for users yet, but, our fear is that when they start to access that tables, all the querys start to get too* slow, and even not running or returning error.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My manager asked me if it is possible to move&amp;nbsp;those abts that are in SAS environment to Oracle.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible? Move the abts to Oracle and continue using the scoring tools that we have?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I create a hardware requirement based in the size of the ABTs, quantity of users that will access it simultaneously?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would love hear your opinions! \o/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS 9.4 - Credit Score for Banking&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Leonardo Galler&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2016 20:58:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/ABTs-in-Oracle/m-p/269512#M7476</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2016-05-10T20:58:20Z</dc:date>
    </item>
    <item>
      <title>Betreff: SAS VA Certification</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/233917#M2753</link>
      <description>&lt;P&gt;Hi Sven!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did the exam a few weeks ago and, fortunately I've passed.&lt;/P&gt;
&lt;P&gt;All the advices given by Michelle helped me a lot, but I believe the most important thing is that I did the Visual Analytics Fast Track and used the materials of the course for my preparation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don´t need to take all the course again, there 3 main areas that you must know:&lt;/P&gt;
&lt;P&gt;1 - Data Builder&lt;/P&gt;
&lt;P&gt;2 - Data Explorer&lt;/P&gt;
&lt;P&gt;3 - Data Designer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don´t need to study the administration of the tool. I suggest, if it is possible, to take the course, and then review those three areas and I believe you can pass the exam.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2015 21:48:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/233917#M2753</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-11-09T21:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA Certification</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/231094#M2701</link>
      <description>Hi Surajit!&lt;BR /&gt;&lt;BR /&gt;I will do what you said, thanks for helping me!&lt;BR /&gt;&lt;BR /&gt;Best regards!</description>
      <pubDate>Thu, 22 Oct 2015 09:58:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/231094#M2701</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-10-22T09:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA Certification</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/229034#M2651</link>
      <description>Thank you so much Michelle! &lt;BR /&gt;I will do what you said! And happy for you support and attention! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 07 Oct 2015 23:00:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/229034#M2651</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-10-07T23:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA Certification</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/228985#M2649</link>
      <description>&lt;P&gt;Hi Michelle, thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I´ve did the Visual Analytics Fast Track course and have the materials, I am thinking about doing it all again and watch the videos at the online learning.&lt;/P&gt;
&lt;P&gt;On your self study which materials did you use?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 19:46:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/228985#M2649</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-10-07T19:46:19Z</dc:date>
    </item>
    <item>
      <title>SAS VA Certification</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/228963#M2647</link>
      <description>&lt;P&gt;Hey guys!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope all of you are doing good!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I´m scheduled to take the&amp;nbsp;&lt;A href="http://support.sas.com/certify/creds/va.html" target="_blank"&gt;SAS Certified Visual Business Analyst: Exploration and Design Using SAS Visual Analytics&lt;/A&gt;&amp;nbsp;exam, could anyone of you help with tips, materials and places where I can take test exams for this certification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help will be appreciated!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 18:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Certification/m-p/228963#M2647</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-10-07T18:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: HTML5</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/HTML5/m-p/198689#M1690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yay! \o/&lt;SPAN style="font-size: 13.3333330154419px;"&gt;\o/&lt;SPAN style="font-size: 13.3333330154419px;"&gt;\o/&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Thanks &lt;A _jive_internal="true" href="https://communities.sas.com/people/annabrown@sas"&gt;annabrown&lt;/A&gt;&lt;/SPAN&gt; !!! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2015 11:34:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/HTML5/m-p/198689#M1690</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-08-14T11:34:05Z</dc:date>
    </item>
    <item>
      <title>HTML5</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/HTML5/m-p/198687#M1688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me if SAS has plans to change VA to HTML5 instead of flash?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2015 19:36:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/HTML5/m-p/198687#M1688</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-08-13T19:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: User connected</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/User-connected/m-p/212712#M2255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m using the classic home page for release 7.1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 12:21:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/User-connected/m-p/212712#M2255</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-07-29T12:21:27Z</dc:date>
    </item>
    <item>
      <title>User connected</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/User-connected/m-p/212710#M2253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a way to show the name of the user that is connected to the VA at that moment?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that the name of the user that is currently using the VA is not shown anywhere in the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your support!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leonardo Galler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 16:24:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/User-connected/m-p/212710#M2253</guid>
      <dc:creator>leogaller</dc:creator>
      <dc:date>2015-07-28T16:24:24Z</dc:date>
    </item>
  </channel>
</rss>

