<p>Excel bietet zwei Funktion das erste Vorkommen eines Zeichens zu finden.<br />mit der Funktion <strong>Finden</strong> wird die Groß- und Kleinschreibung unterschieden mit der Funktion <strong>Suchen</strong> nicht.<br />Wenn jetzt aber das 2., 3. etc. Vorkommen des Zeichens gesucht wird es deutlich schwieriger wenn es Variable gehalten werden soll.<br />Das Prinzip wird im Artikel "<a href="/index.php/tips-und-tricks.html?amp;view=article&amp;id=321:letztes-vorkommen-eines-zeichens-zeichenkette-in-einem-text-in-excel&amp;catid=74:excel_tt">Letztes Vorkommen eines Zeichens im Text</a>" erklärt. Im Feld A1 ist der zu durchsuchende Text. In Feld A2 die zu suchende Zeichenfolge. In A3 steht wie weit in der Trefferliste gesprungen werden soll. Leer entspricht 0. Wird ein Wert größer des maximalen Treffers eingetragen so wird der letzte Treffer genommen.</p>
<p><span style="color: #ff0000;">A1</span> = "Gut<span style="background-color: #ffff99;">en</span> Morg<span style="background-color: #ffff99;">en</span> liebe Sorg<span style="background-color: #ffff99;">en</span>"<br /><span style="color: #0000ff;">A2</span> = "<span style="background-color: #ffff99;">en</span>"<br /><span style="color: #33cccc;">A3</span> = 2</p>
<div style="background: #f8f8f8; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;">
<pre style="margin: 0; line-height: 125%;"><span style="color: #ce5c00; font-weight: bold;">11 </span><span style="color: #ce5c00;"><span style="color: #000000;"><span style="color: #ce5c00;">=</span></span></span>WENNFEHLER(FINDEN("|";WECHSELN(KLEIN(<strong><span style="color: #0000ff;">A1</span></strong>);KLEIN(<span style="color: #000000;"><span style="color: #000000;"><span style="color: #ff0000;">A2</span></span></span><span style="color: #ce5c00;"></span>);"|";WENN(WENN(<span style="color: #000000;"><span style="color: #33cccc;">A3</span></span>=0;1;<span style="color: #000000;"><span style="color: #33cccc;">A3</span></span>)&gt;(LÄNGE(<strong><span style="color: #0000ff;">A1</span></strong>)-LÄNGE(WECHSELN(KLEIN(<strong><span style="color: #0000ff;">A1</span></strong>);KLEIN(<span style="color: #000000;"><span style="color: #000000;"><span style="color: #ff0000;">A2</span></span></span>);"")))/LÄNGE(<span style="color: #000000;"><span style="color: #000000;"><span style="color: #ff0000;">A2</span></span></span>);(LÄNGE(<span style="color: #0000ff;">A1</span>)-LÄNGE(WECHSELN(KLEIN(<strong><span style="color: #0000ff;">A1</span></strong><span style="color: #000000; font-weight: bold;"></span>);KLEIN(<span style="color: #000000;"><span style="color: #000000;"><span style="color: #ff0000;">A</span></span></span><span style="color: #ce5c00;">2</span>);"")))/LÄNGE(<span style="color: #000000;"><span style="color: #000000;"><span style="color: #ff0000;">A2</span></span></span>);WENN(<span style="color: #000000;"><span style="color: #33cccc;">A3</span></span><span style="color: #ce5c00;"></span>=0;1;<span style="color: #000000;"><span style="color: #33cccc;">A3</span></span><span style="color: #ce5c00;"></span>))));0)
</pre>
</div>
<p>&nbsp;</p>