
<?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/"
	>

<channel>
	<title>FlrsNttn.nl</title>
	<atom:link href="http://www.flrsnttn.nl/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.flrsnttn.nl/blog</link>
	<description>VBA, PHP etc.</description>
	<lastBuildDate>Sat, 01 Jan 2011 21:01:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Getallen in een willekeurige range plaatsen</title>
		<link>http://www.flrsnttn.nl/blog/?p=1094</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1094#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:58:50 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1094</guid>
		<description><![CDATA[Met de onderstaande code kun je in een willekeurig bereik getallen laten plaatsen, de getallen zijn afhankelijk van het aantal geselecteerde cellen, er wordt geteld van 1 tot het totaal aantal geselecteerde cellen. Selecteer dus eerst een bereik en voer daarna de onderstaande code uit Sub tst&#40;&#41; &#160; &#160; Randomize &#160; &#160; With Selection &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Met de onderstaande code kun je in een willekeurig bereik getallen laten plaatsen, de getallen zijn afhankelijk van het aantal geselecteerde cellen, er wordt geteld van 1 tot het totaal aantal geselecteerde cellen.</p>
<p>Selecteer dus eerst een bereik en voer daarna de onderstaande code uit</p>
<div class="syntax_hilite">
<div id="vb-2">
<div class="vb" style="font-family:monospace;"><span style="color: #0000DD;">Sub</span> tst<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">Randomize</span><br />
&nbsp; &nbsp; With Selection<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">ReDim</span> sq<span style="color:#008800; font-weight:bold;">&#40;</span>.<span style="color: #000099;">Cells</span>.<span style="color: #0000DD;">Count</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">For</span> j = <span style="color: #cc66cc;">0</span> <span style="color: #0000DD;">To</span> <span style="color: #0000DD;">UBound</span><span style="color:#008800; font-weight:bold;">&#40;</span>sq<span style="color:#008800; font-weight:bold;">&#41;</span> - <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sq<span style="color:#008800; font-weight:bold;">&#40;</span>j<span style="color:#008800; font-weight:bold;">&#41;</span> = <span style="color: #0000DD;">Rnd</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">Next</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">For</span> r = <span style="color: #cc66cc;">0</span> <span style="color: #0000DD;">To</span> .<span style="color: #000099;">Rows</span>.<span style="color: #0000DD;">Count</span> - <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">For</span> c = <span style="color: #cc66cc;">0</span> <span style="color: #0000DD;">To</span> .<span style="color: #000099;">Columns</span>.<span style="color: #0000DD;">Count</span> - <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; teller = teller + <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sheets<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #000099;">Cells</span><span style="color:#008800; font-weight:bold;">&#40;</span>.<span style="color: #000099;">Row</span> + r, .<span style="color: #000099;">Column</span> + c<span style="color:#008800; font-weight:bold;">&#41;</span> = _<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WorksheetFunction.<span style="color: #000099;">Match</span><span style="color:#008800; font-weight:bold;">&#40;</span>WorksheetFunction.<span style="color: #000099;">Small</span><span style="color:#008800; font-weight:bold;">&#40;</span>sq, teller<span style="color:#008800; font-weight:bold;">&#41;</span>, sq, <span style="color: #cc66cc;">0</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">Next</span> c<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">Next</span> r<br />
&nbsp; &nbsp; <span style="color: #0000DD;">End</span> With<br />
<span style="color: #0000DD;">End</span> <span style="color: #0000DD;">Sub</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1094</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vrije nummers zoeken in een range</title>
		<link>http://www.flrsnttn.nl/blog/?p=1083</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1083#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:53:01 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1083</guid>
		<description><![CDATA[Hiermee kan in een range in kolom a naar waarden worden gezocht die niet worden gebruikt in een opeen lopende range, de waarden worden getoond in kolom d Sub niet_gebruikte_nummers_tonen&#40;&#41; &#160; &#160; Set src = Range&#40;&#34;A2:A&#34; &#38; Cells&#40;Rows.Count, &#34;A&#34;&#41;.End&#40;xlUp&#41;.Row&#41; &#160; &#160; ReDim arr&#40;1 To WorksheetFunction.Max&#40;src&#41; - WorksheetFunction.Min&#40;src&#41;, 1 To 1&#41; &#160; &#160; For Each r [...]]]></description>
			<content:encoded><![CDATA[<p>Hiermee kan in een range in kolom a naar waarden worden gezocht die niet worden gebruikt in een opeen lopende range, de waarden worden getoond in kolom d</p>
<div class="syntax_hilite">
<div id="vb-4">
<div class="vb" style="font-family:monospace;"><span style="color: #0000DD;">Sub</span> niet_gebruikte_nummers_tonen<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">Set</span> src = Range<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;A2:A&quot;</span> &amp; Cells<span style="color:#008800; font-weight:bold;">&#40;</span>Rows.<span style="color: #0000DD;">Count</span>, <span style="color: #ff0000;">&quot;A&quot;</span><span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #0000DD;">End</span><span style="color:#008800; font-weight:bold;">&#40;</span>xlUp<span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #000099;">Row</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">ReDim</span> arr<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #cc66cc;">1</span> <span style="color: #0000DD;">To</span> WorksheetFunction.<span style="color: #0000DD;">Max</span><span style="color:#008800; font-weight:bold;">&#40;</span>src<span style="color:#008800; font-weight:bold;">&#41;</span> - WorksheetFunction.<span style="color: #0000DD;">Min</span><span style="color:#008800; font-weight:bold;">&#40;</span>src<span style="color:#008800; font-weight:bold;">&#41;</span>, <span style="color: #cc66cc;">1</span> <span style="color: #0000DD;">To</span> <span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">For</span> <span style="color: #0000DD;">Each</span> r <span style="color: #0000DD;">In</span> src<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">If</span> src<span style="color:#008800; font-weight:bold;">&#40;</span>r.<span style="color: #000099;">Row</span><span style="color:#008800; font-weight:bold;">&#41;</span> - r &lt;&gt; <span style="color: #cc66cc;">1</span> <span style="color: #0000DD;">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">For</span> t = <span style="color: #cc66cc;">1</span> <span style="color: #0000DD;">To</span> src<span style="color:#008800; font-weight:bold;">&#40;</span>r.<span style="color: #000099;">Row</span><span style="color:#008800; font-weight:bold;">&#41;</span> - r - <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; teller = teller + <span style="color: #cc66cc;">1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arr<span style="color:#008800; font-weight:bold;">&#40;</span>teller, <span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span> = r + t<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">Next</span> t<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">End</span> <span style="color: #0000DD;">If</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">Next</span> r<br />
&nbsp; &nbsp; Range<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;D2:D&quot;</span> &amp; WorksheetFunction.<span style="color: #0000DD;">Max</span><span style="color:#008800; font-weight:bold;">&#40;</span>src<span style="color:#008800; font-weight:bold;">&#41;</span> - WorksheetFunction.<span style="color: #0000DD;">Min</span><span style="color:#008800; font-weight:bold;">&#40;</span>src<span style="color:#008800; font-weight:bold;">&#41;</span><span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #000099;">Value</span> = arr<br />
<span style="color: #0000DD;">End</span> <span style="color: #0000DD;">Sub</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1083</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laatste cel zoeken die voldoet aan een zoekwaarde</title>
		<link>http://www.flrsnttn.nl/blog/?p=1089</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1089#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:52:02 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1089</guid>
		<description><![CDATA[Sub rev_find&#40;&#41; &#160; &#160; With Worksheets&#40;bladnaam&#41;.Range&#40;zoekwaarde&#41; &#160; &#160; &#160; &#160; Set rng = .Find&#40;what:=zoekwaarde, after:=Range&#40;laatste cel zoekwaarde&#41;, searchdirection:=xlPrevious&#41; &#160; &#160; &#160; &#160; msgbox rng.Offset&#40;, kolom met waarde&#41; &#160; &#160; End With End Sub]]></description>
			<content:encoded><![CDATA[<div class="syntax_hilite">
<div id="vb-6">
<div class="vb" style="font-family:monospace;"><span style="color: #0000DD;">Sub</span> rev_find<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; With Worksheets<span style="color:#008800; font-weight:bold;">&#40;</span>bladnaam<span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #000099;">Range</span><span style="color:#008800; font-weight:bold;">&#40;</span>zoekwaarde<span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">Set</span> rng = .<span style="color: #000099;">Find</span><span style="color:#008800; font-weight:bold;">&#40;</span>what:=zoekwaarde, after:=Range<span style="color:#008800; font-weight:bold;">&#40;</span>laatste cel zoekwaarde<span style="color:#008800; font-weight:bold;">&#41;</span>, searchdirection:=xlPrevious<span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">msgbox</span> rng.<span style="color: #000099;">Offset</span><span style="color:#008800; font-weight:bold;">&#40;</span>, kolom met waarde<span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">End</span> With<br />
<span style="color: #0000DD;">End</span> <span style="color: #0000DD;">Sub</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1089</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Achterhalen adres samengevoegde cellen</title>
		<link>http://www.flrsnttn.nl/blog/?p=1087</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1087#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:50:06 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1087</guid>
		<description><![CDATA[activecell.mergearea.address]]></description>
			<content:encoded><![CDATA[<div class="syntax_hilite">
<div id="vb-8">
<div class="vb" style="font-family:monospace;">activecell.<span style="color: #000099;">mergearea</span>.<span style="color: #000099;">address</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1087</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetten van alle commandbars in MS-programma&#039;s</title>
		<link>http://www.flrsnttn.nl/blog/?p=1082</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1082#comments</comments>
		<pubDate>Tue, 03 Aug 2010 08:59:38 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Access]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1082</guid>
		<description><![CDATA[Sub commandbars_reset&#40;&#41; &#160; &#160; Dim br As Object &#160; &#160; For Each br In Application.CommandBars &#160; &#160; &#160; &#160; If br.BuiltIn Then br.Reset &#160; &#160; Next br End Sub]]></description>
			<content:encoded><![CDATA[<div class="syntax_hilite">
<div id="vb-10">
<div class="vb" style="font-family:monospace;"><span style="color: #0000DD;">Sub</span> commandbars_reset<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">Dim</span> br <span style="color: #0000DD;">As</span> <span style="color: #0000DD;">Object</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">For</span> <span style="color: #0000DD;">Each</span> br <span style="color: #0000DD;">In</span> Application.<span style="color: #000099;">CommandBars</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000DD;">If</span> br.<span style="color: #000099;">BuiltIn</span> <span style="color: #0000DD;">Then</span> br.<span style="color: #0000DD;">Reset</span><br />
&nbsp; &nbsp; <span style="color: #0000DD;">Next</span> br<br />
<span style="color: #0000DD;">End</span> <span style="color: #0000DD;">Sub</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1082</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formule voor de weekdagen aan de hand van een weeknummer</title>
		<link>http://www.flrsnttn.nl/blog/?p=1079</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1079#comments</comments>
		<pubDate>Mon, 02 Aug 2010 10:14:35 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1079</guid>
		<description><![CDATA[=DATUM&#40;JAAR&#40;VANDAAG&#40;&#41;&#41;;1;1&#41;+KIES&#40;WEEKDAG&#40;DATUM&#40;JAAR&#40;VANDAAG&#40;&#41;&#41;;1;1&#41;;2&#41;;1;-1;-2;-3;-4;-5;2&#41;+&#40;$A$2-1&#41;*7+RIJ&#40;&#41;+5]]></description>
			<content:encoded><![CDATA[<div class="syntax_hilite">
<div id="vb-12">
<div class="vb" style="font-family:monospace;">=DATUM<span style="color:#008800; font-weight:bold;">&#40;</span>JAAR<span style="color:#008800; font-weight:bold;">&#40;</span>VANDAAG<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">1</span>;<span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span>+KIES<span style="color:#008800; font-weight:bold;">&#40;</span>WEEKDAG<span style="color:#008800; font-weight:bold;">&#40;</span>DATUM<span style="color:#008800; font-weight:bold;">&#40;</span>JAAR<span style="color:#008800; font-weight:bold;">&#40;</span>VANDAAG<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">1</span>;<span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">2</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">1</span>;-<span style="color: #cc66cc;">1</span>;-<span style="color: #cc66cc;">2</span>;-<span style="color: #cc66cc;">3</span>;-<span style="color: #cc66cc;">4</span>;-<span style="color: #cc66cc;">5</span>;<span style="color: #cc66cc;">2</span><span style="color:#008800; font-weight:bold;">&#41;</span>+<span style="color:#008800; font-weight:bold;">&#40;</span>$A$<span style="color: #cc66cc;">2</span>-<span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span>*<span style="color: #cc66cc;">7</span>+RIJ<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span>+<span style="color: #cc66cc;">5</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1079</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aanmaken van custom labels in excel</title>
		<link>http://www.flrsnttn.nl/blog/?p=1062</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1062#comments</comments>
		<pubDate>Fri, 28 May 2010 06:27:51 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Grafieken]]></category>
		<category><![CDATA[excel2010]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1062</guid>
		<description><![CDATA[Hieronder een flash filmpje waarin wordt getoond hoe je je eigen labels bij een grafiek kunt plaatsen. Er wordt hier gebruik gemaakt van een add-in, te weten de chartlabeler gemaakt door Rob Bovey, deze is hier te vinden. [See post to watch Flash video]]]></description>
			<content:encoded><![CDATA[<p>Hieronder een flash filmpje waarin wordt getoond hoe je je eigen labels bij een grafiek kunt plaatsen. Er wordt hier gebruik gemaakt van een add-in, te weten de<br />
chartlabeler gemaakt door Rob Bovey, deze is <a href="http://www.appspro.com/Utilities/ChartLabeler.htm" target="_blank">hier</a> te vinden.</p>
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1062</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snel verwijderen van rijen op basis van lege cellen in een kolom</title>
		<link>http://www.flrsnttn.nl/blog/?p=1059</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1059#comments</comments>
		<pubDate>Mon, 17 May 2010 09:32:05 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1059</guid>
		<description><![CDATA[Sub Lege_rijen_verwijderen&#40;&#41; &#160; &#160; With ActiveSheet.Range&#40;&#34;A:a&#34;&#41; &#160; &#160; &#160; &#160; .Cells.SpecialCells&#40;xlCellTypeBlanks&#41;.Rows.EntireRow.Delete Shift:=xlUp &#160; &#160; End With End Sub]]></description>
			<content:encoded><![CDATA[<div class="syntax_hilite">
<div id="vb-14">
<div class="vb" style="font-family:monospace;"><span style="color: #0000DD;">Sub</span> Lege_rijen_verwijderen<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; With ActiveSheet.<span style="color: #000099;">Range</span><span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;A:a&quot;</span><span style="color:#008800; font-weight:bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; .<span style="color: #000099;">Cells</span>.<span style="color: #000099;">SpecialCells</span><span style="color:#008800; font-weight:bold;">&#40;</span>xlCellTypeBlanks<span style="color:#008800; font-weight:bold;">&#41;</span>.<span style="color: #000099;">Rows</span>.<span style="color: #000099;">EntireRow</span>.<span style="color: #000099;">Delete</span> Shift:=xlUp<br />
&nbsp; &nbsp; <span style="color: #0000DD;">End</span> With<br />
<span style="color: #0000DD;">End</span> <span style="color: #0000DD;">Sub</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1059</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bovenliggende map met formule tonen</title>
		<link>http://www.flrsnttn.nl/blog/?p=1053</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1053#comments</comments>
		<pubDate>Mon, 03 May 2010 10:55:03 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Formules]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1053</guid>
		<description><![CDATA[Met de onderstaande formule is de mapnaam in een excel-cel te tonen, als je dus als pad c:\test hebt staan dan komt er in de cel waarin de formule komt te staan dus test te staan =SPATIES.WISSEN&#40;RECHTS&#40;SUBSTITUEREN&#40;LINKS&#40;CEL&#40;&#34;bestandsnaam&#34;;A1&#41;;VIND.SPEC&#40;&#34;[&#34;;CEL&#40;&#34;bestandsnaam&#34;;A1&#41;;1&#41;-2&#41;;&#34;\&#34;;HERHALING&#40;&#34; &#34;;100&#41;&#41;;100&#41;&#41;]]></description>
			<content:encoded><![CDATA[<p>Met de onderstaande formule is de mapnaam in een excel-cel te tonen, als je dus als pad c:\test hebt staan dan komt er in de cel waarin de formule komt te staan dus test te staan</p>
<div class="syntax_hilite">
<div id="vb-16">
<div class="vb" style="font-family:monospace;">=SPATIES.<span style="color: #000099;">WISSEN</span><span style="color:#008800; font-weight:bold;">&#40;</span>RECHTS<span style="color:#008800; font-weight:bold;">&#40;</span>SUBSTITUEREN<span style="color:#008800; font-weight:bold;">&#40;</span>LINKS<span style="color:#008800; font-weight:bold;">&#40;</span>CEL<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;bestandsnaam&quot;</span>;A1<span style="color:#008800; font-weight:bold;">&#41;</span>;VIND.<span style="color: #000099;">SPEC</span><span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;[&quot;</span>;CEL<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot;bestandsnaam&quot;</span>;A1<span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">1</span><span style="color:#008800; font-weight:bold;">&#41;</span>-<span style="color: #cc66cc;">2</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #ff0000;">&quot;\&quot;</span>;HERHALING<span style="color:#008800; font-weight:bold;">&#40;</span><span style="color: #ff0000;">&quot; &quot;</span>;<span style="color: #cc66cc;">100</span><span style="color:#008800; font-weight:bold;">&#41;</span><span style="color:#008800; font-weight:bold;">&#41;</span>;<span style="color: #cc66cc;">100</span><span style="color:#008800; font-weight:bold;">&#41;</span><span style="color:#008800; font-weight:bold;">&#41;</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1053</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch bestand voor het subst&#039;en van de huidige directory</title>
		<link>http://www.flrsnttn.nl/blog/?p=1051</link>
		<comments>http://www.flrsnttn.nl/blog/?p=1051#comments</comments>
		<pubDate>Fri, 12 Feb 2010 10:18:08 +0000</pubDate>
		<dc:creator>Floris</dc:creator>
				<category><![CDATA[Batch-bestanden]]></category>
		<category><![CDATA[programmeren]]></category>
		<category><![CDATA[batch bestand]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[subst]]></category>

		<guid isPermaLink="false">http://www.flrsnttn.nl/blog/?p=1051</guid>
		<description><![CDATA[Met onderstaande code voor een batchbestand kun je makkelijk de directory waarin het batch-bestandje zich bevindt subst'en. De belangrijkste regel die erin staat is set current_dir="%~dp0", deze zorgt ervoor dat de huidige directory aan current_dir wordt toegekend. Deze code werkt ook bij UNC-paden @echo off subst /d w:&#62; nul set current_dir=&#34;%~dp0&#34; set current_dir=%current_dir:~0,-2%&#34; SUBST W: [...]]]></description>
			<content:encoded><![CDATA[<p>Met onderstaande code voor een batchbestand kun je makkelijk de directory waarin het batch-bestandje zich bevindt  subst'en. De belangrijkste regel die erin staat is set current_dir="%~dp0", deze zorgt ervoor dat de huidige directory aan current_dir wordt toegekend. Deze code werkt ook bij UNC-paden</p>
<div class="syntax_hilite">
<div id="vb-18">
<div class="vb" style="font-family:monospace;">@echo off<br />
subst /d w:&gt; nul<br />
<span style="color: #0000DD;">set</span> current_dir=<span style="color: #ff0000;">&quot;%~dp0&quot;</span><br />
<span style="color: #0000DD;">set</span> current_dir=%current_dir:~<span style="color: #cc66cc;">0</span>,-<span style="color: #cc66cc;">2</span>%<span style="color: #ff0000;">&quot;<br />
SUBST W: %current_dir%</span></div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flrsnttn.nl/blog/?feed=rss2&#038;p=1051</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

