<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>All abt &#039;SAS SOFTWARE&#039;</title>
	<atom:link href="http://sassoftware.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sassoftware.wordpress.com</link>
	<description>Your search about SAS ends here.........</description>
	<lastBuildDate>Tue, 24 Apr 2012 18:50:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sassoftware.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>All abt &#039;SAS SOFTWARE&#039;</title>
		<link>http://sassoftware.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sassoftware.wordpress.com/osd.xml" title="All abt &#039;SAS SOFTWARE&#039;" />
	<atom:link rel='hub' href='http://sassoftware.wordpress.com/?pushpress=hub'/>
		<item>
		<title>2 SAS Tips: Subsetting IF and Nth highest salary using Proc SQL</title>
		<link>http://sassoftware.wordpress.com/2012/01/24/2-sas-tips/</link>
		<comments>http://sassoftware.wordpress.com/2012/01/24/2-sas-tips/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 18:54:13 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[SAS Tips & Tricks]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=488</guid>
		<description><![CDATA[1. Subsetting IF statement without any condition: (Visitor Contribution:) data one; input age; if age; cards; 23 12 . 45 0 54 -21 43 ; run; Output Dataset created: age 23 12 45 54 -21 43 Conclusion: So, use above IF statement only for FLAG variables which contains values as 0 or 1 (or) . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=488&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>1.</strong> Subsetting IF statement without any condition:<br />
(Visitor Contribution:)<br />
data one;<br />
input age;<br />
<strong>if age;</strong><br />
cards;<br />
23<br />
12<br />
<strong>.</strong><br />
45<br />
<strong>0</strong><br />
54<br />
-21<br />
43<br />
;<br />
run;</p>
<p><strong>Output Dataset created:</strong><br />
<strong>age</strong><br />
23<br />
12<br />
45<br />
54<br />
-21<br />
43</p>
<p>Conclusion: So, use above IF statement only for FLAG variables which contains values as 0 or 1 (or) . or 1<br />
to have lesser confusion. I mean use it only when you are sure about the data!</p>
<p><strong>2.</strong> Extract <strong>N</strong>th highest salary from SALARY table using <strong>Proc SQL</strong>:<br />
data salary;<br />
input sal;<br />
cards;<br />
23<br />
12<br />
.<br />
45<br />
0<br />
54<br />
-21<br />
43<br />
;<br />
run;</p>
<p>%let N=3;<br />
proc sql;<br />
select a.sal from salary a where &amp;N= (select count(distinct sal) from salary b where a.sal&lt;=b.sal);<br />
quit;</p>
<p>Happy Learning <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/488/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/488/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=488&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2012/01/24/2-sas-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>Many SAS BI Tips &amp; Tricks @ &#8230;</title>
		<link>http://sassoftware.wordpress.com/2012/01/06/many-sas-bi-tips-tricks/</link>
		<comments>http://sassoftware.wordpress.com/2012/01/06/many-sas-bi-tips-tricks/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 19:16:25 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[Posts on SAS BI]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=485</guid>
		<description><![CDATA[Many SAS BI Tips &#38; Tricks at: http://www.bi-notes.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=485&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many SAS BI Tips &amp; Tricks at:</p>
<p><a href="http://www.bi-notes.com/" title="SAS Business Intelligence Notes" target="_blank">http://www.bi-notes.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/485/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=485&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2012/01/06/many-sas-bi-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>How your daily life related to SAS</title>
		<link>http://sassoftware.wordpress.com/2011/12/04/how-your-daily-life-related-to-sas/</link>
		<comments>http://sassoftware.wordpress.com/2011/12/04/how-your-daily-life-related-to-sas/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 06:46:33 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[sas software]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=479</guid>
		<description><![CDATA[This is Your Life&#8230; with SAS Your daily activities, morning to night, are influenced by SAS software in ways that you probably never considered. Learn how SAS makes live better in a typical day. Learn more at http://www.sas.com/news/sascom/dayinlife.html Source: See more such videos at SASsoftware channel on YouTube.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=479&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>This is Your Life&#8230; with SAS</strong><br />
Your daily activities, morning to night, are influenced by SAS software in ways that you probably never considered. Learn how SAS makes live better in a typical day. Learn more at http://www.sas.com/news/sascom/dayinlife.html</p>
<span style="text-align:center; display: block;"><a href="http://sassoftware.wordpress.com/2011/12/04/how-your-daily-life-related-to-sas/"><img src="http://img.youtube.com/vi/QZs92Ns-oMY/2.jpg" alt="" /></a></span>
<p>Source: See more such videos at <strong>SASsoftware </strong>channel on YouTube.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/479/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=479&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/12/04/how-your-daily-life-related-to-sas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>Utility: Drop the Variable if it&#8217;s Data is Missing</title>
		<link>http://sassoftware.wordpress.com/2011/11/22/utility-drop-the-variable-if-its-data-is-missing/</link>
		<comments>http://sassoftware.wordpress.com/2011/11/22/utility-drop-the-variable-if-its-data-is-missing/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 06:15:40 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[SAS Tips & Tricks]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=474</guid>
		<description><![CDATA[Drop any variable (Num/Char), if its data is missing in all of the observations&#8230;.. %macro DropMissingVars(DS=); data _null_; set &#38;ds. (obs=1); array num_vars[*] _NUMERIC_; array char_vars[*] _CHARACTER_; call symputx(&#8216;num_qty&#8217;, dim(num_vars)); call symputx(&#8216;char_qty&#8217;, dim(char_vars)); run; data _null_; set &#38;ds. end=finished; array num_vars[*] _NUMERIC_; array char_vars[*] _CHARACTER_; array num_miss [&#38;num_qty] $ (&#38;num_qty * &#8216;missing&#8217;); array char_miss [&#38;char_qty] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=474&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Drop any variable (Num/Char), if its data is missing in all of the observations&#8230;..</p>
<p>%macro DropMissingVars(DS=);<br />
data _null_;<br />
set &amp;ds. (obs=1);<br />
  array num_vars[*] _NUMERIC_;<br />
  array char_vars[*] _CHARACTER_;<br />
  call symputx(&#8216;num_qty&#8217;, dim(num_vars));<br />
  call symputx(&#8216;char_qty&#8217;, dim(char_vars));<br />
run;</p>
<p>data _null_;<br />
  set &amp;ds. end=finished;</p>
<p>  array num_vars[*] _NUMERIC_;<br />
  array char_vars[*] _CHARACTER_;</p>
<p>  array num_miss [&amp;num_qty] $ (&amp;num_qty * &#8216;missing&#8217;);<br />
  array char_miss [&amp;char_qty] $ (&amp;char_qty * &#8216;missing&#8217;); </p>
<p>  length list $ 50; </p>
<p>  do i=1 to dim(num_vars);<br />
    if num_vars(i) ne . then num_miss(i)=&#8217;non-miss&#8217;;<br />
  end;<br />
  do i=1 to dim(char_vars);<br />
    if char_vars(i) ne &#8221; then char_miss(i)=&#8217;non-miss&#8217;;<br />
  end;</p>
<p>  if finished then do;<br />
  do i= 1 to dim(num_vars);<br />
    if num_miss(i) = &#8216;missing&#8217; then list=trim(list)||&#8217; &#8216;||trim(vname(num_vars(i)));<br />
  end;<br />
  do i= 1 to dim(char_vars);<br />
    if char_miss(i) = &#8216;missing&#8217; then list=trim(list)||&#8217; &#8216;||trim(vname(char_vars(i)));<br />
  end;<br />
  call symput(&#8216;mlist&#8217;,list);<br />
  end;<br />
run;</p>
<p>data &amp;ds;<br />
set &amp;ds;<br />
drop &amp;mlist;<br />
quit;</p>
<p>%mend DropMissingVars;<br />
%DropMissingVars(DS=work.test);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/474/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=474&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/11/22/utility-drop-the-variable-if-its-data-is-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>SAS Keyboard Macros</title>
		<link>http://sassoftware.wordpress.com/2011/10/27/443/</link>
		<comments>http://sassoftware.wordpress.com/2011/10/27/443/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 20:55:50 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[SAS Tips & Tricks]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=443</guid>
		<description><![CDATA[Keyboard Shortcuts for SAS: to decrease your programming Time&#8230;. The Enhanced Editor in SAS allows you to save a series of keystrokes as keyboard macros. A special form of these macros is keyboard abbreviation. The abbreviation allows you to recall stored code with a minimum of keystrokes. In the example that follows, these keystrokes form [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=443&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Keyboard Shortcuts for SAS: to decrease your programming Time&#8230;.</strong></p>
<p>The Enhanced Editor in SAS allows you to save a series of keystrokes as keyboard macros. A special form of these macros is keyboard abbreviation. The abbreviation allows you to recall stored code with a minimum of keystrokes. In the example that follows, these keystrokes form the outline of a header section of comments for a SAS program.</p>
<p>BUILDING AN ABBREVIATION<br />
By using an abbreviation, we will only need to type this code once. E.g. the following comment is to be<br />
inserted into the top of each SAS program that you write. </p>
<p>/*=====================================================<br />
Project : The project name<br />
Program : 01_client_name_project_purpose.sas<br />
Version : Version Number<br />
Purpose : Brief description of the code and its purpose<br />
Author : Name of the author<br />
Date : Date of creation of the code<br />
Sub Macros : Names of macros if used<br />
Reviewer : Name of the reviewer<br />
Notes : Any notes or remarks about the code<br />
======================================================*/<br />
To add this header as an abbreviation, select the pull down menus Tools and Add Abbreviation.</p>
<p><img alt="" src="http://sassoftware.files.wordpress.com/2011/10/saskeyboardmacros.jpg?w=452&h=446" title="1" class="aligncenter" width="452" height="446" /></p>
<p>The Add Abbreviation dialog box is then displayed (see below). In the first dialog space, enter a name for the new abbreviation. This becomes a keyboard macro, so you must select a name that has not already been used. Then type (or more practically paste) the substitution text into the ‘Text to insert for abbreviation’ dialog space and press Ok.</p>
<p><img alt="" src="http://sassoftware.files.wordpress.com/2011/10/addabbreviation.jpg?w=457&h=192" title="2" class="aligncenter" width="457" height="192" /></p>
<p>USING THE ABBREVIATION<br />
Whenever you want to use an abbreviation, simply type in the name of the abbreviation while in the Enhanced Editor. As soon as the last letter of the abbreviation has been entered, a small pop-up ‘tip’ text box containing the first few digits of the abbreviation is displayed. If at that point you press the TAB key the name of the abbreviation will be replaced by the text that you stored.<br />
The following screen shot shows that the name of the HEADER abbreviation has been entered in the Enhanced Editor and the first few characters of the text to be substituted is shown in the pop-up ‘tip’ box.</p>
<p><img alt="" src="http://sassoftware.files.wordpress.com/2011/10/headersas.jpg?w=402&h=119" title="3" class="alignnone" width="402" height="119" /></p>
<p>As soon as you press the TAB key the abbreviation name is replaced by the stored text.</p>
<p><img alt="" src="http://sassoftware.files.wordpress.com/2011/10/headergreensas.jpg?w=662&h=275" title="4" class="alignnone" width="662" height="275" /></p>
<p>Original:http://analysis-reporting.blogspot.com/2011/02/sas-keyboard-macros-and-abbreviations.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=443&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/10/27/443/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>

		<media:content url="http://sassoftware.files.wordpress.com/2011/10/saskeyboardmacros.jpg?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://sassoftware.files.wordpress.com/2011/10/addabbreviation.jpg?w=300" medium="image">
			<media:title type="html">2</media:title>
		</media:content>

		<media:content url="http://sassoftware.files.wordpress.com/2011/10/headersas.jpg?w=300" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://sassoftware.files.wordpress.com/2011/10/headergreensas.jpg?w=300" medium="image">
			<media:title type="html">4</media:title>
		</media:content>
	</item>
		<item>
		<title>What’s new in SAS Enterprise Guide 4.3</title>
		<link>http://sassoftware.wordpress.com/2011/10/20/what%e2%80%99s-new-in-sas-enterprise-guide-4-3/</link>
		<comments>http://sassoftware.wordpress.com/2011/10/20/what%e2%80%99s-new-in-sas-enterprise-guide-4-3/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 03:57:18 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[Posts on SAS BI]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=440</guid>
		<description><![CDATA[1. Mouse over tooltip – gives you help right in the program editor window. 2. Autocomplete – start typing a keyword, SAS will offer you code options. Source: http://blogs.sas.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=440&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Mouse over tooltip – gives you help right in the program editor window.<br />
2. Autocomplete – start typing a keyword, SAS will offer you code options.<br />
<img alt="" src="http://blogs.sas.com/content/sgf/files/2011/10/Enhanced-Program-Editor-Autocomplete.png" title="Program Editor Autocomplete" class="aligncenter" width="748" height="466" /></p>
<p>Source: <a href="http://blogs.sas.com/" target="_blank">http://blogs.sas.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/440/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=440&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/10/20/what%e2%80%99s-new-in-sas-enterprise-guide-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>

		<media:content url="http://blogs.sas.com/content/sgf/files/2011/10/Enhanced-Program-Editor-Autocomplete.png" medium="image">
			<media:title type="html">Program Editor Autocomplete</media:title>
		</media:content>
	</item>
		<item>
		<title>Google your SAS Dataset&#8230;.</title>
		<link>http://sassoftware.wordpress.com/2011/09/07/keyword-search-entire-dataset/</link>
		<comments>http://sassoftware.wordpress.com/2011/09/07/keyword-search-entire-dataset/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 18:29:09 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[SAS Tips & Tricks]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=435</guid>
		<description><![CDATA[You want to know, whether particular data (Keyword) is available in any variable in your entire SAS Dataset?? Below small SAS code will search all the observations and variables in your input SAS dataset and creates an new dataset called &#8216;Found&#8217;, which contains the row number and variable name in which it found the specified [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=435&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You want to know, whether particular data (Keyword) is available in any variable in your entire SAS Dataset??<br />
Below small SAS code will search all the observations and variables in your input SAS dataset and creates an new dataset called &#8216;Found&#8217;, which contains the row number and variable name in which it found the specified keyword&#8230;</p>
<p>data inputdata;<br />
input var1 $ var2 $ var3 $;<br />
cards;<br />
pavan kumar rao<br />
ramu pavan reddy<br />
vijay chari vikas<br />
pavannn again came<br />
;<br />
run;</p>
<p>data found (keep=rownum varname keyword);<br />
set inputdata;<br />
array google(*) _char_;<br />
keyword=&#8217;pavan&#8217;;<br />
do i=1 to dim(google);<br />
if index(google(i),strip(keyword)) then do;<br />
rownum=_n_;<br />
varname=vname(google(i));<br />
output;<br />
end;<br />
end;<br />
run;</p>
<p>*Happy Learning!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/435/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=435&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/09/07/keyword-search-entire-dataset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>Few interesting new features in SAS 9.3 &#8211; Macro Language</title>
		<link>http://sassoftware.wordpress.com/2011/08/16/few-interesting-new-features-in-sas-9-3-macro-language/</link>
		<comments>http://sassoftware.wordpress.com/2011/08/16/few-interesting-new-features-in-sas-9-3-macro-language/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 04:46:19 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[sas software]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=431</guid>
		<description><![CDATA[Automatic Macro Variable SYSNOBS: Contains the number of observations read from the last data set that was closed by the previous procedure or DATA step. Macro Function %SYSMACEXIST: Indicates whether there is a macro definition exist in the WORK.SASMACR catalog. Macro Statement %SYSMACDELETE: Deletes a macro definition from the WORK.SASMACR catalog. Till SAS 9.2, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=431&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Automatic Macro Variable SYSNOBS: </strong>Contains the number of observations read from the last data set that was closed by the previous procedure or DATA step.<br />
<strong>Macro Function %SYSMACEXIST: </strong>Indicates whether there is a macro definition exist in the WORK.SASMACR catalog.<br />
<strong>Macro Statement %SYSMACDELETE: </strong>Deletes a macro definition from the WORK.SASMACR catalog.<br />
Till SAS 9.2, the alternate code what we used to write is:<br />
proc catalog catalog=work.sasmacr;<br />
delete helloworld.macro;<br />
quit;</p>
<p>More <strong>macro debugging with MAUTOCOMPLOC</strong> System option<strong>:</strong> Displays in the SAS log the source location of the autocall macros when the autocall macro is compiled.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/431/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/431/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=431&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/08/16/few-interesting-new-features-in-sas-9-3-macro-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>SAS 9.3 version released</title>
		<link>http://sassoftware.wordpress.com/2011/07/13/sas-9-3-version-released/</link>
		<comments>http://sassoftware.wordpress.com/2011/07/13/sas-9-3-version-released/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 03:45:46 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[Updates from my day2day life]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=424</guid>
		<description><![CDATA[For detailed news, please click here: http://www.sas.com/mailings/camp2007/c22510.html Whats new in SAS 9.3? Read here: http://support.sas.com/documentation/cdl/en/whatsnew/64209/HTML/default/viewer.htm#titlepage.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=424&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For detailed news, please click here:<br />
<a href="http://www.sas.com/mailings/camp2007/c22510.html">http://www.sas.com/mailings/camp2007/c22510.html</a></p>
<p>Whats new in SAS 9.3? Read here:<br />
<a href="http://support.sas.com/documentation/cdl/en/whatsnew/64209/HTML/default/viewer.htm#titlepage.htm" target="_blank">http://support.sas.com/documentation/cdl/en/whatsnew/64209/HTML/default/viewer.htm#titlepage.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=424&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/07/13/sas-9-3-version-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
		<item>
		<title>Thinking out of SAS&#8230;.</title>
		<link>http://sassoftware.wordpress.com/2011/06/10/sas-sas-sas-boring/</link>
		<comments>http://sassoftware.wordpress.com/2011/06/10/sas-sas-sas-boring/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 16:53:46 +0000</pubDate>
		<dc:creator>All abt SAS Software</dc:creator>
				<category><![CDATA[Updates from my day2day life]]></category>

		<guid isPermaLink="false">http://sassoftware.wordpress.com/?p=411</guid>
		<description><![CDATA[I am feeling boring while always thinking about SAS programming I decided to solve few general questions, which will increase my logical power and thinking out of box capabilities!! So that I can think and write my SAS programs pure logically and smarter. Hahaha&#8230;.once again SAS came into picture. I can&#8217;t stop thinking about SAS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=411&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am feeling boring while always thinking about SAS programming <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
I decided to solve few general questions, which will increase my logical power and thinking out of box capabilities!! So that I can think and write my SAS programs pure logically and smarter. Hahaha&#8230;.once again SAS came into picture. I can&#8217;t stop thinking about SAS <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Following are the few questions I found interesting and trying to solve one by one. Of course, I can find answers in Google, but my main agenda will move out of track&#8230;.Decided not to use Google, only my own brain <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
You can also try these&#8230;.</p>
<p>1. There are 25 horses and 5 race tracks (only 1 horse can run on 1 track). How many races need to be run to select the top 5 horses?<br />
2. Having an infinite supply of water and two containers, one for 3 liters and one for 5 liters, how would you measure 4 liters?<br />
3. You are on a game show. There are three doors. Behind one of them is a prize; the other two have coal. The host knows which door holds the prize. You choose door #1. Before it is opened, the host opens door #3 and reveals a lump of coal. You have the choice to stick with the door you chose originally or switch to door #2. What do you do?<br />
4. Three friends with different salaries need to find out their average salary without revealing individual salaries to each other. How?<br />
5. How many scale measurements does it take to know which of eight balls weighs the most? How many would 28 balls take?<br />
6. You are a new manager. On your first day, your senior manager tells you that sales have dropped 50% from the previous quarter. What are the 3 questions you would ask?<br />
7. If two cars are traveling in a two lap race on a track of any length, one going 60 mph and the other going 30mph, how fast will the slower car have to go to finish at the same time?<br />
8. How to measure 9 minutes using only a 4 minute and 7 minute hourglass?<br />
9. You are in a room with 3 switches which correspond to 3 bulbs in another room and you don&#8217;t know which switch corresponds to which bulb. You can only enter the room with the bulbs once. You can NOT use any external equipment (power supplies, resistors, etc.). How do you find out which bulb corresponds to which switch? </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sassoftware.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sassoftware.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sassoftware.wordpress.com/411/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sassoftware.wordpress.com&#038;blog=20223672&#038;post=411&#038;subd=sassoftware&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sassoftware.wordpress.com/2011/06/10/sas-sas-sas-boring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/76a88a41fd966092327a101470ca9587?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sassoftware</media:title>
		</media:content>
	</item>
	</channel>
</rss>
