<?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>eagles_dare13 Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>eagles_dare13 Tracker</description>
    <pubDate>Sat, 09 May 2026 23:35:39 GMT</pubDate>
    <dc:date>2026-05-09T23:35:39Z</dc:date>
    <item>
      <title>What can a stored process do that a normal SAS program cannot</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-can-a-stored-process-do-that-a-normal-SAS-program-cannot/m-p/209994#M15736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of a SAS stored process? What can a stored process do that a normal sas program / macro cannot? It seems like a stored process is an unnecessary wrapper around a simple SAS program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my company, the stored process is the first layer on the server side that intercepts web requests and sends back response in the form of JSON.&lt;/P&gt;&lt;P&gt;Can a web request not directly interact with a SAS server side macro? IS that what the stored process is for? Some kind of a Mid Tier controller that acts as the gateway between web client and the SAS server side code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2015 20:58:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-can-a-stored-process-do-that-a-normal-SAS-program-cannot/m-p/209994#M15736</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-08-28T20:58:14Z</dc:date>
    </item>
    <item>
      <title>What ML algorithms are part of base SAS</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/What-ML-algorithms-are-part-of-base-SAS/m-p/209935#M11349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am I correct to say that simple learning algorithms like linear and logistic regression can be done in sas enterprise guide using proc reg, but advanced algorithms like SVM and neural networks require enterprise miner?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2015 19:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/What-ML-algorithms-are-part-of-base-SAS/m-p/209935#M11349</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-08-28T19:07:18Z</dc:date>
    </item>
    <item>
      <title>SAS global macro variable not being resolved</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-global-macro-variable-not-being-resolved/m-p/217436#M40048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 2 jobs in DI studio. In job 1, I need to define some variables that I need to use in job2.&lt;/P&gt;&lt;P&gt;So in job 1, I do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sql ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select col1 into :new_col from table1 where 1 = 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;%global new_col;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In job 2:&lt;/P&gt;&lt;P&gt;I try to use the macro variable new_col, but the variable name cannot be resolved.&lt;/P&gt;&lt;P&gt;How to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 19:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-global-macro-variable-not-being-resolved/m-p/217436#M40048</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-08-05T19:46:54Z</dc:date>
    </item>
    <item>
      <title>How to use a sql statement ina DATA step</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-use-a-sql-statement-ina-DATA-step/m-p/213217#M3054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to achieve this in SAS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA TEST;&lt;/P&gt;&lt;P&gt;A=1;&lt;/P&gt;&lt;P&gt;B=2;&lt;/P&gt;&lt;P&gt;IF A IN (LIST_OF_VALUES) THEN B = 5;&lt;/P&gt;&lt;P&gt;OUTPUT;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIST_OF_VALUES is a column in a lookup table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally, Iwould like something like:&lt;/P&gt;&lt;P&gt;DATA TEST;&lt;/P&gt;&lt;P&gt;A=1;&lt;/P&gt;&lt;P&gt;B=2;&lt;/P&gt;&lt;P&gt;IF A IN (select LIST_OF_VALUES from TABLE_TEST) THEN B = 5;&lt;/P&gt;&lt;P&gt;OUTPUT;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;But this syntax is not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 18:32:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-use-a-sql-statement-ina-DATA-step/m-p/213217#M3054</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-24T18:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to simulate a Weiner process in SAS</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-simulate-a-Weiner-process-in-SAS/m-p/203415#M2123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. I copied your code but am getting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Invocation of unresolved module RANDFUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 18:54:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-simulate-a-Weiner-process-in-SAS/m-p/203415#M2123</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-11T18:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of random numbers in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202652#M2720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. How to get the plot of the distribution? I am looking for something like xyplot(x, p);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 16:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202652#M2720</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-11T16:46:50Z</dc:date>
    </item>
    <item>
      <title>How to simulate a Weiner process in SAS</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-simulate-a-Weiner-process-in-SAS/m-p/203411#M2119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to simulate data points that have been drawn from a Geometric Brownian Motion (Weiner Process)?&lt;/P&gt;&lt;P&gt;I am looking at this function:&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a001466748.htm" title="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a001466748.htm"&gt;SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I don't see an option for a Weiner process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the Black Scholes internally simulates a Weiner process but is it possible to see what a set of 10,000 numbers drawn from a Weiner process looks like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 13:36:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-simulate-a-Weiner-process-in-SAS/m-p/203411#M2119</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-11T13:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a list of random numbers in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202650#M2718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. How come the probplot does not represent a bell curve but more like a 45 degree straight line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 13:27:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202650#M2718</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-11T13:27:25Z</dc:date>
    </item>
    <item>
      <title>How to generate a list of random numbers in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202646#M2714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wish to simulate(generate) a list of random numbers, where I specify the number of observations that I wish, the underlying distribution(normal,lognormal), the mean, the std. deviation and I want as&amp;nbsp; output a list of random numbers from this distribution.&lt;/P&gt;&lt;P&gt;Further I wish to draw a probability plot of these numbers, conforming to stathe distribution that they were drawn from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do it in SAS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 18:53:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-generate-a-list-of-random-numbers-in-SAS/m-p/202646#M2714</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-06-10T18:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert to char from numeric without losing decimals</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-convert-to-char-from-numeric-without-losing-decimals/m-p/196306#M2546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, but 3.10 is coming as 3.1, the last 0 is getting dropped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; num=3; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; num=3.01; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; num=3.10; output;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length text $10.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; text=strip(put(num,best7.2));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 18:48:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-convert-to-char-from-numeric-without-losing-decimals/m-p/196306#M2546</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-03-06T18:48:49Z</dc:date>
    </item>
    <item>
      <title>How to convert to char from numeric without losing decimals</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-convert-to-char-from-numeric-without-losing-decimals/m-p/196303#M2543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a numeric variable x and i tried to convert to character using: put (x, best32.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, x can have values like 3, 3.0, 3.02 etc...upto 2 decimal places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to keep the format as is..i.e 3 --&amp;gt;3, 3.0 --&amp;gt; 3.0 and so on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently, with my code, it is outputting everything as 1 decimal places...and dropping the second decimal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 17:01:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-convert-to-char-from-numeric-without-losing-decimals/m-p/196303#M2543</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-03-06T17:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: drop variables from a data set conditionally</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/drop-variables-from-a-data-set-conditionally/m-p/147017#M1464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;This seems to work, but is it correct?&lt;/P&gt;&lt;P&gt;In SAS, how can I do the equivalent of:&lt;/P&gt;&lt;P&gt;data a;&lt;/P&gt;&lt;P&gt;set b;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (somecondition = true) then do;&lt;/P&gt;&lt;P&gt;drop col2;&lt;/P&gt;&lt;P&gt;end;/*col2 is a column included in b*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 20:25:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/drop-variables-from-a-data-set-conditionally/m-p/147017#M1464</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-30T20:25:53Z</dc:date>
    </item>
    <item>
      <title>drop variables from a data set conditionally</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/drop-variables-from-a-data-set-conditionally/m-p/147015#M1462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SAS, how can I do the equivalent of:&lt;/P&gt;&lt;P&gt;data a;&lt;/P&gt;&lt;P&gt;set b;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (somecondition = true)&lt;/P&gt;&lt;P&gt;drop col2; /*col2 is a column included in b*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 20:20:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/drop-variables-from-a-data-set-conditionally/m-p/147015#M1462</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-30T20:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: sas if else not working when using parentheses</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/sas-if-else-not-working-when-using-parentheses/m-p/144664#M1421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks. Can you show with example what you mean by recoding with SELECT statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 20:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/sas-if-else-not-working-when-using-parentheses/m-p/144664#M1421</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-29T20:38:52Z</dc:date>
    </item>
    <item>
      <title>sas if else not working when using parentheses</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/sas-if-else-not-working-when-using-parentheses/m-p/144662#M1419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why is this code giving error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data test;&lt;/P&gt;&lt;P&gt;length a: $5;&lt;BR /&gt;a='2';&lt;BR /&gt;if a = '1' then&amp;nbsp; a ='a' ;&lt;BR /&gt;else (&lt;BR /&gt; a= 'b'); &lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Undeclared array referenced: else.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I realise removing the parentheses will solve the issue, but i want to keep the parentheses for ease of understanding. Ultimately the else box will have many if else if conditions and the parentheses helps greatly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 12pt; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 20:29:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/sas-if-else-not-working-when-using-parentheses/m-p/144662#M1419</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-29T20:29:03Z</dc:date>
    </item>
    <item>
      <title>SAS HLO= O not working as expected</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-HLO-O-not-working-as-expected/m-p/138660#M2109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating a data step as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data TEST;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; INFILE DATALINES DSD; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; INPUT&amp;nbsp; CODE: $4. FLAG_IND: $1.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; DATALINES;&lt;/P&gt;&lt;P&gt;0111,Y&lt;/P&gt;&lt;P&gt;0115,N&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;if last then do;&lt;/P&gt;&lt;P&gt;hlo ='O';&lt;/P&gt;&lt;P&gt;FLAG_IND ='U';&lt;/P&gt;&lt;P&gt;output;&lt;/P&gt;&lt;P&gt;end; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My desired output is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CODE&amp;nbsp;&amp;nbsp;&amp;nbsp; FLAG_IND&amp;nbsp;&amp;nbsp; HLO&lt;/P&gt;&lt;P&gt;0111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y &lt;/P&gt;&lt;P&gt;0115&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; U&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; O&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I get:&lt;/P&gt;&lt;P&gt;Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is my syntax not right? I was following this:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.pharmasug.org/proceedings/2011/CC/PharmaSUG-2011-CC19.pdf" title="http://www.pharmasug.org/proceedings/2011/CC/PharmaSUG-2011-CC19.pdf"&gt;http://www.pharmasug.org/proceedings/2011/CC/PharmaSUG-2011-CC19.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Page 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2015 18:58:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-HLO-O-not-working-as-expected/m-p/138660#M2109</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-26T18:58:16Z</dc:date>
    </item>
    <item>
      <title>Find variable names that are in one dataset but not in another</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Find-variable-names-that-are-in-one-dataset-but-not-in-another/m-p/169214#M1901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I have 2 data sets:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data investment;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; begin='01JAN1990'd;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end='31DEC2009'd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data investment_2;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; begin='01JAN1990'd;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish to write a program that will give me list of all columns that are in investment but not in investment_2. So in this case, the variable 'end'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this? I dont want to list out the column names using proc contents on eaqch dataset and then manually eyeball it and check for differences.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 17:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Find-variable-names-that-are-in-one-dataset-but-not-in-another/m-p/169214#M1901</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2015-01-05T17:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/167196#M1857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. You can replicate the error like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro test();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %if &amp;amp;macro_var =%str() %then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %do;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put ERROR: The macro_var is not set.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %return;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %else %do;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put macro_var was set.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %return;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%mend test;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%test();&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 21:14:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/167196#M1857</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2014-12-31T21:14:28Z</dc:date>
    </item>
    <item>
      <title>A character operand was found in the %EVAL function or %IF condition where a numeric operand is required</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/167194#M1855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this code inside a macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%if &amp;amp;macro_var =%str() %then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put ERROR: The macro_var is not set.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %return;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WARNING: Apparent symbolic reference macro_var&amp;nbsp; not resolved.&lt;/P&gt;&lt;P&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was: &amp;amp;macro_var=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The WARNING is ok..because the macro_var has not been set. But Why is it throwing an error? Why is it looking for a numeric operand? How to resolve this? Basically I am trying to check if a macro variable is null or has been set with a proper value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 20:24:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/167194#M1855</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2014-12-31T20:24:28Z</dc:date>
    </item>
    <item>
      <title>Macro variable getting set to the name of the macro</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Macro-variable-getting-set-to-the-name-of-the-macro/m-p/167160#M1851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; When I run this progrma:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; set info1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; if compress(upcase(a),'','cops') eq 'abc' then call symputx('macro_var1',b,'g'); &lt;STRONG&gt;/*if condition evaluates to false*/&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put Macro var1 is: &amp;amp;macro_var1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I get Output:&lt;BR /&gt;Macro var1 is: &amp;amp;macro_var1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was expecting output:&lt;BR /&gt;Macro var1 is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. the macro variable should be set to a null (blank) value. Why did the macro variable value get set to the name of the macro?&lt;BR /&gt;The dataset info1 looks like (2 by 2 matrix):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp; user12&lt;BR /&gt;Salary 100&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 19:09:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Macro-variable-getting-set-to-the-name-of-the-macro/m-p/167160#M1851</guid>
      <dc:creator>eagles_dare13</dc:creator>
      <dc:date>2014-12-31T19:09:48Z</dc:date>
    </item>
  </channel>
</rss>

