<?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>Profi-Excel.de &#187; UDF</title>
	<atom:link href="http://www.profi-excel.de/udf/feed" rel="self" type="application/rss+xml" />
	<link>http://www.profi-excel.de</link>
	<description>Die Seite für den professionellen Umgang mit Excel und VBA</description>
	<lastBuildDate>Wed, 23 Mar 2011 21:01:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Verketten mit Format</title>
		<link>http://www.profi-excel.de/udf/verketten-mit-format.htm</link>
		<comments>http://www.profi-excel.de/udf/verketten-mit-format.htm#comments</comments>
		<pubDate>Wed, 20 Sep 2006 05:58:42 +0000</pubDate>
		<dc:creator>Eike</dc:creator>
				<category><![CDATA[UDF]]></category>

		<guid isPermaLink="false">http://profi-excel.de/udf/verketten-mit-format.htm</guid>
		<description><![CDATA[ Mit Hilfe der For Each-Schleife werden alle Zellen des Bereichs durchlaufen. Über die .Text-Eigenschaft werden die angezeigten Zelleninhalte ermittelt, wobei das Zahlenformat übernommen wird. Der Aufruf im Tabellenblatt sieht wie folgt aus: = VerkettenMitFormat(A1:A5) PLAIN TEXT VBA:   &#160; Function VerkettenMitFormat&#40;a As Range&#41; As String 'verkettet die Zellen des Bereichs unter 'Beruecksichtigung der Formatierung '09-2006 [...]]]></description>
			<content:encoded><![CDATA[<p> Mit Hilfe der For Each-Schleife werden alle Zellen des Bereichs durchlaufen. Über die .Text-Eigenschaft werden die angezeigten Zelleninhalte ermittelt, wobei das Zahlenformat übernommen wird.</p>
<p>Der Aufruf im Tabellenblatt sieht wie folgt aus: = VerkettenMitFormat(A1:A5)</p>
<div class="igBar"><span id="lvba-2"><a href="#" onclick="javascript:showPlainTxt('vba-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">VBA:</span>
<div id="vba-2">
<div class="vba">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #00007F;">Function</span> VerkettenMitFormat<span style="color:#000000; font-weight:bold;">&#40;</span>a <span style="color: #00007F;">As</span> Range<span style="color:#000000; font-weight:bold;">&#41;</span> <span style="color: #00007F;">As</span> <span style="color: #00007F;">String</span></div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007F00;">'verkettet die Zellen des Bereichs unter</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007F00;">'Beruecksichtigung der Formatierung</span></div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007F00;">'09-2006 E.Bimczok</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007F00;">'http://www.profi-excel.de</span></div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #00007F;">Dim</span> myCell <span style="color: #00007F;">As</span> Range</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #00007F;">For</span> <span style="color: #00007F;">Each</span> myCell <span style="color: #00007F;">In</span> a</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">  VerkettenMitFormat = _</div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">   VerkettenMitFormat &amp; myCell.<span style="color: #000000;">Text</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #00007F;">Next</span> myCell</div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #00007F;">End</span> <span style="color: #00007F;">Function</span></div>
</li>
<li style="font-weight: bold;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">  </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.profi-excel.de/udf/verketten-mit-format.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

