<?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>Weblog of Christian Zinsmeister</title>
	<atom:link href="http://zinsmeister.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zinsmeister.wordpress.com</link>
	<description>Medical Business Analyst</description>
	<lastBuildDate>Fri, 06 Jan 2012 20:11:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='zinsmeister.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Weblog of Christian Zinsmeister</title>
		<link>http://zinsmeister.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://zinsmeister.wordpress.com/osd.xml" title="Weblog of Christian Zinsmeister" />
	<atom:link rel='hub' href='http://zinsmeister.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MFILE</title>
		<link>http://zinsmeister.wordpress.com/2009/10/25/mfile/</link>
		<comments>http://zinsmeister.wordpress.com/2009/10/25/mfile/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 14:08:45 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=141</guid>
		<description><![CDATA[Even when using SAS options like MLOGIC, SYMBOLGEN and MPRINT logs can be quite difficult to decipher. By using the option MFILE and a file reference for MPRINT the generated code lines from the macro are written into an external file. options mprint mfile ; filename mprint &#8216;c:/macro.sas&#8217; ; %macro test ; %mend test ; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=141&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Even when using SAS options like MLOGIC, SYMBOLGEN and MPRINT logs can be quite difficult to decipher. By using the option MFILE and a file reference for MPRINT the generated code lines from the macro are written into an external file.</p>
<p>options mprint mfile ;<br />
filename mprint &#8216;c:/macro.sas&#8217; ;<br />
%macro test ;<br />
%mend test ;<br />
%test;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=141&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/10/25/mfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Formatting Variables in SQL statement</title>
		<link>http://zinsmeister.wordpress.com/2009/09/25/formatting-variables-in-sql-statement/</link>
		<comments>http://zinsmeister.wordpress.com/2009/09/25/formatting-variables-in-sql-statement/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 15:57:03 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=139</guid>
		<description><![CDATA[proc sql; select max(date) format =ddmmyyp10. into :maxdat from indata; quit; %put &#38;maxdat.;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=139&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc sql; select max(date) format =ddmmyyp10. into :maxdat  from indata;  quit;<br />
%put &amp;maxdat.;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=139&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/09/25/formatting-variables-in-sql-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Parsing various substrings from a variable</title>
		<link>http://zinsmeister.wordpress.com/2009/04/07/parsing-various-substrings-from-a-variable/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/07/parsing-various-substrings-from-a-variable/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:27:08 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=136</guid>
		<description><![CDATA[data _null_; test = &#8220;Tropfen 20MG/5ML 300ML&#8221;; if _n_ = 1 then prx = prxparse(&#8220;m/\w+ (\d+)MG\/(\d+)ML (\d+)ML/&#8221;); retain prx; if prxmatch(prx, test) then do; str_mg = prxposn(prx, 1 , test); str_dose = prxposn(prx, 2 , test); str_pack = prxposn(prx, 3 , test); end; run<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=136&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>data _null_;<br />
	test = &#8220;Tropfen 20MG/5ML 300ML&#8221;;<br />
	if _n_ = 1 then prx = prxparse(&#8220;m/\w+ (\d+)MG\/(\d+)ML (\d+)ML/&#8221;);<br />
	retain prx;<br />
	if prxmatch(prx, test) then do;<br />
		str_mg 	 = prxposn(prx,  1 , test);<br />
		str_dose      = prxposn(prx,  2 , test);<br />
		str_pack      = prxposn(prx,  3 , test);<br />
		end;<br />
	run</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=136&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/07/parsing-various-substrings-from-a-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>General Integrity Constraints</title>
		<link>http://zinsmeister.wordpress.com/2009/04/01/general-integrity-constraints/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/01/general-integrity-constraints/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:23:36 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=134</guid>
		<description><![CDATA[Check: A user defined constraint on a single variable or a relationship among several variables. Not Null: Missing values are not allowed Primary Key: Values for this variable must unique and non-missing. Unique: Values for this variable must be unique. proc datasets library=work nolist; modify mydata; ic create ic_gender = check (where=(gender in(&#8216;F&#8217;,'M&#8217;))); ic create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=134&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check: A user defined constraint on a single variable or a relationship among several variables.<br />
Not Null: Missing values are not allowed<br />
Primary Key: Values for this variable must unique and non-missing.<br />
Unique: Values for this variable must be unique.</p>
<p>proc datasets library=work nolist;<br />
	modify mydata;<br />
	ic create ic_gender    = check (where=(gender in(&#8216;F&#8217;,'M&#8217;)));<br />
	ic create ic_pulse     = check (where=( pulse between 40 and 100 or pulse is missing));<br />
	ic create ic_diastolic = check (where=(systole between 60 and 140));<br />
	ic create ic_patkey    = unique(Patno);<br />
	run;<br />
quit;</p>
<p>SAS reports (only) the first integrity constraint for each observation.</p>
<p>proc datasets library=work nolist;<br />
	modify mydata;<br />
	ic delete ic_gender;<br />
	run;<br />
quit;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=134&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/01/general-integrity-constraints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Proc Compare: Compare Datasets</title>
		<link>http://zinsmeister.wordpress.com/2009/04/01/proc-compare-compare-datasets/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/01/proc-compare-compare-datasets/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:11:01 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=132</guid>
		<description><![CDATA[proc compare base=one compare=two transpose brief; id patnum; run; PROC COMPARE compares two data sets. ID is a unique identifier or a combination of variables that create a unique identifier. TRANSPOSE prints the reports of value differences by observation instead of by variable. BRIEFSUMMARY / BRIEF produces a short comparison summary and suppresses the four [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=132&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc compare base=one compare=two transpose brief;<br />
   id patnum;<br />
run;</p>
<p>PROC COMPARE compares two data sets. ID is a unique identifier or a combination of variables that create a unique identifier.</p>
<p>TRANSPOSE prints the reports of value differences by observation instead of by variable.</p>
<p>BRIEFSUMMARY / BRIEF produces a short comparison summary and suppresses the four default summary reports (data set summary report, variables summary report, observation summary report, and values comparison summary report).</p>
<p>You can add a VAR statement to PROC COMPARE, which restricts the comparison to these variables.</p>
<p>proc compare base=one compare=two transpose brief;<br />
   id patnum;<br />
   var Gender;<br />
run;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=132&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/01/proc-compare-compare-datasets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Proc SQL: &#8216;Having&#8217; Clause for &#8216;Group by&#8217; variables</title>
		<link>http://zinsmeister.wordpress.com/2009/04/01/proc-sql-having-clause-for-group-by-variables/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/01/proc-sql-having-clause-for-group-by-variables/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:58:30 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=130</guid>
		<description><![CDATA[proc sql; select patnum, visit from dataset group by patnum having count(patnum) gt 1; * Example: determine duplicate patients; quit; If you have a GROUP BY clause in your PROC SQL and follow it with a COUNT function, you can count the frequency of each level of the GROUP BY variable by using the HAVING [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=130&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc sql;<br />
	select patnum,<br />
	visit<br />
	from dataset<br />
	group by patnum<br />
	having count(patnum) gt 1; * Example: determine duplicate patients;<br />
quit;</p>
<p>If you have a GROUP BY clause in your PROC SQL and follow it with a COUNT function, you can count the frequency of each level of the GROUP BY variable by using the HAVING clause. (Multiple missing patient numbers will not appear in the listing because the COUNT function returns a frequency count only for nonmissing values. )</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=130&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/01/proc-sql-having-clause-for-group-by-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Proc Format: Upcase</title>
		<link>http://zinsmeister.wordpress.com/2009/04/01/proc-format-upcase/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/01/proc-format-upcase/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:38:59 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=126</guid>
		<description><![CDATA[proc format; invalue $gen (upcase) &#8216;F&#8217; = &#8216;F&#8217; &#8216;M&#8217; = &#8216;M&#8217; other = &#8216; &#8216;; invalue $ae &#8217;0&#8242;,&#8217;1&#8242; = _same_ other = &#8216; &#8216;; run; By using the keyword UPCASE in the informat, values are being read to uppercase before the ranges are checked.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=126&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc format;<br />
   invalue $gen (upcase) &#8216;F&#8217; = &#8216;F&#8217;<br />
   &#8216;M&#8217; = &#8216;M&#8217;<br />
   other = &#8216; &#8216;;<br />
   invalue $ae &#8217;0&#8242;,&#8217;1&#8242; = _same_<br />
   other = &#8216; &#8216;;<br />
run;</p>
<p>By using the keyword UPCASE in the informat, values are being read to uppercase before the ranges are checked.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=126&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/01/proc-format-upcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Proc Format: keyword _same_</title>
		<link>http://zinsmeister.wordpress.com/2009/04/01/proc-format-keyword-_same_/</link>
		<comments>http://zinsmeister.wordpress.com/2009/04/01/proc-format-keyword-_same_/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:36:02 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=124</guid>
		<description><![CDATA[proc format ; value test 1-20 = _same_ other = . ; run ; The keyword _SAME_ is a SAS reserved value that leaves values unchanged.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=124&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc format ;<br />
value test<br />
1-20 = _same_<br />
other = . ;<br />
run ;</p>
<p>The keyword _SAME_ is a SAS reserved value that leaves values unchanged. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=124&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/04/01/proc-format-keyword-_same_/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Cantanhede Portugal 2006</title>
		<link>http://zinsmeister.wordpress.com/2009/02/16/cantanhede-portugal-2006/</link>
		<comments>http://zinsmeister.wordpress.com/2009/02/16/cantanhede-portugal-2006/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 22:47:26 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=120</guid>
		<description><![CDATA[Vinha Regional Beiras 2006 aus Portugal Rebsorte: Baga würzig, fruchtig Note 2 &#8211; interessanter geschmack<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=120&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vinha Regional Beiras</p>
<p>2006 aus Portugal</p>
<p>Rebsorte: Baga</p>
<p>würzig, fruchtig</p>
<p>Note 2 &#8211; interessanter geschmack</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=120&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/02/16/cantanhede-portugal-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Merlot 2006 Chile</title>
		<link>http://zinsmeister.wordpress.com/2009/02/16/merlot-2006-chile/</link>
		<comments>http://zinsmeister.wordpress.com/2009/02/16/merlot-2006-chile/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 22:45:44 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=118</guid>
		<description><![CDATA[Valle Central Chile Rotwein Villa Del Rey Penny vollmundig, nachhaltig, stark note 2<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=118&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Valle Central Chile</p>
<p>Rotwein</p>
<p>Villa Del Rey</p>
<p>Penny</p>
<p>vollmundig, nachhaltig, stark</p>
<p>note 2</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=118&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/02/16/merlot-2006-chile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>My fav Videos</title>
		<link>http://zinsmeister.wordpress.com/2009/02/02/my-fav-videos/</link>
		<comments>http://zinsmeister.wordpress.com/2009/02/02/my-fav-videos/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 22:11:37 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=113</guid>
		<description><![CDATA[Schildkröten können fliegen (Originaltitel: لاک پشت ها هم پرواز می کنند‎, Lakposhtha hâm parvaz mikonand) http://de.wikipedia.org/wiki/Schildkr%C3%B6ten_k%C3%B6nnen_fliegen Die Farben des Paradieses (persisch رنگ خدا‎ Rang-e khoda) http://de.wikipedia.org/wiki/Die_Farben_des_Paradieses Kleine Schwester Zusje. NL 1996. Babel http://www.schnitt.de/202,1940,01 Drei Farben: Blau, Rot, Weiß<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=113&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Schildkröten können fliegen (Originaltitel: لاک پشت ها هم پرواز می کنند‎, Lakposhtha hâm parvaz mikonand)</p>
<p>http://de.wikipedia.org/wiki/Schildkr%C3%B6ten_k%C3%B6nnen_fliegen</p>
<p>Die Farben des Paradieses (persisch رنگ خدا‎ Rang-e khoda)</p>
<p>http://de.wikipedia.org/wiki/Die_Farben_des_Paradieses</p>
<p>Kleine Schwester</p>
<p>Zusje. NL 1996.</p>
<p>Babel</p>
<p>http://www.schnitt.de/202,1940,01</p>
<p>Drei Farben: Blau, Rot, Weiß</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=113&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/02/02/my-fav-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Eichstetter Vulkanfelsen (weiß)</title>
		<link>http://zinsmeister.wordpress.com/2009/02/01/eichstetter-vulkanfelsen-weis/</link>
		<comments>http://zinsmeister.wordpress.com/2009/02/01/eichstetter-vulkanfelsen-weis/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 10:22:00 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=109</guid>
		<description><![CDATA[Weissburgunder Baden 2006 Eichstetter Vulkanfelsen Lidl fruchtig-trockener Weißwein: leicht, weich, trocken, erfrischende Säure, Zitrus- und Kernobstnoten ganz ok, nichts besonderes, Note 3<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=109&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Weissburgunder Baden 2006</p>
<p>Eichstetter Vulkanfelsen</p>
<p>Lidl</p>
<p>fruchtig-trockener Weißwein: leicht, weich, trocken, erfrischende Säure, Zitrus- und Kernobstnoten</p>
<p>ganz ok, nichts besonderes, Note 3</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=109&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/02/01/eichstetter-vulkanfelsen-weis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Dornfelder Rheinhessen 2007</title>
		<link>http://zinsmeister.wordpress.com/2009/02/01/dornfelder-rheinhessen-2007/</link>
		<comments>http://zinsmeister.wordpress.com/2009/02/01/dornfelder-rheinhessen-2007/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 10:11:30 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=104</guid>
		<description><![CDATA[Dornfelder 2007 Rheinhessen Qualitätswein trocken Lidl war nicht gut, Note: 4 Aromen von Kirschen, Waldbeeren und Cassis<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=104&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dornfelder</p>
<p>2007</p>
<p>Rheinhessen</p>
<p>Qualitätswein trocken</p>
<p>Lidl</p>
<p>war nicht gut, Note: 4</p>
<p>Aromen von Kirschen, Waldbeeren und Cassis</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=104&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2009/02/01/dornfelder-rheinhessen-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Wine: Coeur du Roy</title>
		<link>http://zinsmeister.wordpress.com/2008/11/26/wine-coeur-du-roy/</link>
		<comments>http://zinsmeister.wordpress.com/2008/11/26/wine-coeur-du-roy/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 19:42:31 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=100</guid>
		<description><![CDATA[Coeur du Roy Bordeaux 2006 nothing special, not worth buing again<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=100&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="snap_preview">Coeur du Roy</div>
<div class="snap_preview">Bordeaux</div>
<div class="snap_preview">2006</div>
<div class="snap_preview">nothing special, not worth buing again</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=100&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/11/26/wine-coeur-du-roy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Linking Chart Text Elements to a Cell</title>
		<link>http://zinsmeister.wordpress.com/2008/11/25/linking-chart-text-elements-to-a-cell/</link>
		<comments>http://zinsmeister.wordpress.com/2008/11/25/linking-chart-text-elements-to-a-cell/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 17:44:25 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=98</guid>
		<description><![CDATA[You can link the following chart text elements to a cell: - title - primary and secondary X-axis titles - primary and secondary Y-axis titles - series data label 1) Select one of the text labels 2) go to the Formula bar, type = (an equals sign), click a cell and press Enter. If you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=98&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can link the following chart text elements to a cell:</p>
<p>- title</p>
<p>- primary and secondary X-axis titles</p>
<p>- primary and secondary Y-axis titles</p>
<p>- series data label</p>
<p>1) Select one of the text labels</p>
<p>2) go to the Formula bar, type <tt><strong>=</strong></tt> (an equals sign), click a cell and press Enter. If you are referencing a cell on another sheet, you will have to type the sheet name followed by an exclamation mark [<tt><strong>!</strong></tt>], then the cell reference. For data labels you need to select an individual data label before linking it to a cell.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=98&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/11/25/linking-chart-text-elements-to-a-cell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Excel: Replace empty fields with &#8217;0&#8242;</title>
		<link>http://zinsmeister.wordpress.com/2008/11/20/excel-replace-empty-fields-with-0/</link>
		<comments>http://zinsmeister.wordpress.com/2008/11/20/excel-replace-empty-fields-with-0/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:17:58 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=95</guid>
		<description><![CDATA[Problem: Within a certain cell range of numbers you want to replace empty fields with the number &#8217;0&#8242;. As you can search and replace empty cells you would have to fill them in manually. Really? Solution: 1) Type 0 in a single field and copy it. 2) Select the cell range where you want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=95&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Problem: Within a certain cell range of numbers you want to replace empty fields with the number &#8217;0&#8242;. As you can search and replace empty cells you would have to fill them in manually. Really?<br />
Solution:</p>
<p>1) Type 0 in a single field and copy it.</p>
<p>2) Select the cell range where you want to replace &#8220;&#8221; by 0</p>
<p>3) Right-click (or click &#8220;Edit&#8221; in menu) and select &#8220;Paste Special&#8230;&#8221;</p>
<p>4) Select operation &#8220;Add&#8221;</p>
<p>==&gt; Thus all present digits remain unchanged (e.g. 5+0=5). Previously empty fields contain now the value 0.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=95&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/11/20/excel-replace-empty-fields-with-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Remove all Hyperlinks in an Excel Sheet</title>
		<link>http://zinsmeister.wordpress.com/2008/10/09/remove-all-hyperlinks-in-an-excel-sheet/</link>
		<comments>http://zinsmeister.wordpress.com/2008/10/09/remove-all-hyperlinks-in-an-excel-sheet/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 08:22:47 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=85</guid>
		<description><![CDATA[Create a module in VBA and simply paste in the following code: Sub DeleteHyper() ActiveSheet.Hyperlinks.Delete End Sub<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=85&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>Create a module in VBA and simply paste in the following code:

Sub DeleteHyper()
    ActiveSheet.Hyperlinks.Delete
End Sub</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=85&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/10/09/remove-all-hyperlinks-in-an-excel-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Wine</title>
		<link>http://zinsmeister.wordpress.com/2008/10/05/wine/</link>
		<comments>http://zinsmeister.wordpress.com/2008/10/05/wine/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:56:15 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=81</guid>
		<description><![CDATA[Yellow Tail Shiraz Australien leicht und trocken kraftvoll, gut eingebundene Tannine und Aroma von reifen Beerenfrüchten, saftigen schwarzen Kirschen und Pflaumen Zu: dunklen Fleisch- und deftigen Schmorgerichten, aber auch würzigem Käse<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=81&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yellow Tail Shiraz</p>
<p>Australien</p>
<p>leicht und trocken</p>
<p>kraftvoll, gut eingebundene Tannine und Aroma von reifen Beerenfrüchten, saftigen schwarzen Kirschen und Pflaumen</p>
<p>Zu: dunklen Fleisch- und deftigen Schmorgerichten, aber auch würzigem Käse</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=81&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/10/05/wine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Wein</title>
		<link>http://zinsmeister.wordpress.com/2008/10/05/wein/</link>
		<comments>http://zinsmeister.wordpress.com/2008/10/05/wein/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:54:23 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=79</guid>
		<description><![CDATA[Michael Schneider Spätburgunder trocken, Pfalz 2007 Rewe charaktervoll, elegant, Aroma reifer Kirschen, harmonischer Charakter Zu: kräftigen Fleischspeisen und würzigem Käse<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=79&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Michael Schneider</p>
<p>Spätburgunder trocken, Pfalz</p>
<p>2007</p>
<p>Rewe</p>
<p>charaktervoll, elegant, Aroma reifer Kirschen, harmonischer Charakter</p>
<p>Zu: kräftigen Fleischspeisen und würzigem Käse</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=79&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/10/05/wein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Integrating Websites in XP</title>
		<link>http://zinsmeister.wordpress.com/2008/09/26/integrating-websites-in-xp/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/26/integrating-websites-in-xp/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 08:34:02 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=71</guid>
		<description><![CDATA[Right Click on Desktop &#8211;&#62; Properties &#8211;&#62; Desktop &#8211;&#62; Customize Desktop &#8211;&#62; Web<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=71&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Right Click on Desktop &#8211;&gt; Properties &#8211;&gt; Desktop &#8211;&gt; Customize Desktop &#8211;&gt; Web</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=71&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/26/integrating-websites-in-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>System entschlacken</title>
		<link>http://zinsmeister.wordpress.com/2008/09/25/system-entschlacken/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/25/system-entschlacken/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 09:45:33 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=58</guid>
		<description><![CDATA[Folgende Dateitypen können ohne Schaden von der Festplatte gelöscht werden: BAK, CHK, GID, LOG, OLD, PCH, PDB, TMP Quelle: Chip<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=58&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Folgende Dateitypen können ohne Schaden von der Festplatte gelöscht werden:</p>
<p>BAK, CHK, GID, LOG, OLD, PCH, PDB, TMP</p>
<p>Quelle: Chip</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=58&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/25/system-entschlacken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Excel: Delta Function</title>
		<link>http://zinsmeister.wordpress.com/2008/09/25/excel-delta-function/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/25/excel-delta-function/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 09:42:59 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=56</guid>
		<description><![CDATA[Tests whether two values are equal. Returns 1 if number1 = number2; returns 0 otherwise. For example, by summing several DELTA functions you calculate the count of equal pairs. Example: DELTA(5, 4) checks whether 5 equals 4<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=56&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table border="0" width="0" align="right">
<tbody>
<tr>
<td class="noborder"></td>
</tr>
</tbody>
</table>
<p class="ALNSR"><a href="hhobj_1.Click()"> </a></p>
<p>Tests whether two values are equal. Returns 1 if number1 = number2; returns 0  otherwise. For example, by summing  several DELTA functions you calculate the count of equal pairs.</p>
<p>Example:</p>
<p>DELTA(5, 4) checks whether 5 equals 4</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=56&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/25/excel-delta-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Observations in ,-separated macro variable</title>
		<link>http://zinsmeister.wordpress.com/2008/09/24/observations-in-separated-macro-variable/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/24/observations-in-separated-macro-variable/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 18:39:33 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=53</guid>
		<description><![CDATA[proc sql ; select patnum into : name separated by &#8216;,&#8217; from datain; quit; %put &#38;name.;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=53&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>proc sql ;<br />
select patnum into : name separated by &#8216;,&#8217;<br />
from datain;</p>
<p>quit;</p>
<p>%put &amp;name.;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=53&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/24/observations-in-separated-macro-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Test Persisches alphabet</title>
		<link>http://zinsmeister.wordpress.com/2008/09/10/test-persisches-alphabet/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/10/test-persisches-alphabet/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 12:24:14 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=26</guid>
		<description><![CDATA[میش گوسفندی است که شاخ ندارد<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=26&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:Arial;font-size:x-small;"><strong><span style="font-size:10pt;font-family:Arial;" dir="rtl" lang="AR-SA">میش  گوسفندی است که شاخ</span><span style="font-size:10pt;font-family:Arial;" lang="AR-SA"> </span><span style="font-size:10pt;font-family:Arial;" dir="rtl" lang="AR-SA"> ندارد</span></strong></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=26&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/10/test-persisches-alphabet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Summarizing across Observations</title>
		<link>http://zinsmeister.wordpress.com/2008/09/10/summarizing-across-observations/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/10/summarizing-across-observations/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:27:33 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=18</guid>
		<description><![CDATA[data y; set x; by patnum; if first.patnum then cnt_thedau = thedau; else cnt_thedau + thedau; run; *Umsetzung auch mit lag() möglich;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=18&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>data y;<br />
set x;<br />
by patnum;<br />
if first.patnum then cnt_thedau = thedau;<br />
else cnt_thedau + thedau;<br />
run;</p>
<p>*Umsetzung auch mit lag() möglich;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=18&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/10/summarizing-across-observations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: List Files and Folders in Directory</title>
		<link>http://zinsmeister.wordpress.com/2008/09/10/list-files-and-folders-in-directory/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/10/list-files-and-folders-in-directory/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:25:08 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=16</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=16&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is password protected. You must visit the website and enter the password to continue reading.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=16&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/10/list-files-and-folders-in-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Do-Loop Counting</title>
		<link>http://zinsmeister.wordpress.com/2008/09/10/do-loop-counting/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/10/do-loop-counting/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:08:54 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=13</guid>
		<description><![CDATA[data loop; x=0; do index=1 to 5 by 2; x=index; put &#8220;In    loop: x=&#8221; x &#8221; index=&#8221; index; end; put &#8220;After loop: x=&#8221; x &#8221; index=&#8221; index; run; /* In    loop: x=1  index=1 In    loop: x=3  index=3 In    loop: x=5  index=5 After loop: x=5  index=7 */<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=13&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>data loop;<br />
x=0;<br />
do index=1 to 5 by 2;<br />
x=index;<br />
put &#8220;In    loop: x=&#8221; x &#8221; index=&#8221; index;<br />
end;<br />
put &#8220;After loop: x=&#8221; x &#8221; index=&#8221; index;<br />
run;</p>
<p>/*<br />
In    loop: x=1  index=1<br />
In    loop: x=3  index=3<br />
In    loop: x=5  index=5<br />
After loop: x=5  index=7<br />
*/</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=13&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/10/do-loop-counting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Append Datasets</title>
		<link>http://zinsmeister.wordpress.com/2008/09/10/append-datasets/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/10/append-datasets/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:06:52 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=10</guid>
		<description><![CDATA[%macro test(spec=); data appdata; set appdata; length spec $5.; run; %if %SYSFUNC(EXIST(master)) = 1 %then %do; proc append base=master  data=appdata; run; %end; %else %do; data master; set appdata; run; %end; %mend test; proc datasets; delete master; run; quit; %test(spec=&#8221;API&#8221;); %test(spec=&#8221;Neuro&#8221;); PROC EXPORT data = master outfile = &#8220;out.xls&#8221; dbms = EXCEL2000 replace; RUN;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=10&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>%macro test(spec=);</p>
<p>data appdata;<br />
set appdata;<br />
length spec $5.;<br />
run;</p>
<p>%if %SYSFUNC(EXIST(master)) = 1<br />
%then %do;<br />
proc append base=master  data=appdata;<br />
run;<br />
%end;<br />
%else %do;<br />
data master;<br />
set appdata;<br />
run;<br />
%end;</p>
<p>%mend test;</p>
<p>proc datasets;<br />
delete master;<br />
run;<br />
quit;</p>
<p>%test(spec=&#8221;API&#8221;);<br />
%test(spec=&#8221;Neuro&#8221;);</p>
<p>PROC EXPORT data = master<br />
outfile = &#8220;out.xls&#8221;<br />
dbms = EXCEL2000 replace;<br />
RUN;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=10&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/10/append-datasets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
		<item>
		<title>Prxparse</title>
		<link>http://zinsmeister.wordpress.com/2008/09/05/prxparse/</link>
		<comments>http://zinsmeister.wordpress.com/2008/09/05/prxparse/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 08:46:29 +0000</pubDate>
		<dc:creator>zinsmeister</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://zinsmeister.wordpress.com/?p=3</guid>
		<description><![CDATA[data out set in; prx = prxparse(&#8220;s/(\\w*)\\s*(\\w&#124;-)*&#62;&#62;/\\1/&#8221;); product = prxchange(prx,  1 , praep); run;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=3&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>data out<br />
set in;<br />
prx = prxparse(&#8220;s/(\\w*)\\s*(\\w|-)*&gt;&gt;/\\1/&#8221;);<br />
product = prxchange(prx,  1 , praep);<br />
run;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/zinsmeister.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/zinsmeister.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zinsmeister.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zinsmeister.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zinsmeister.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zinsmeister.wordpress.com&amp;blog=4738908&amp;post=3&amp;subd=zinsmeister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zinsmeister.wordpress.com/2008/09/05/prxparse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">zinsmeister</media:title>
		</media:content>
	</item>
	</channel>
</rss>
