Clever-Excel-Forum

Normale Version: Benötige Hilfe bei ISTTEXT? Formel
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
hallo Zusammen, 

Habe wahrscheinlich eine einfach Frage für euch...
Wenn in B5 etwas steht, soll dieses in C5 + angehängten Text stehen, wenn B6 leer ist, soll C6 auch leer sein. 
ISTTEXT ist anscheinend nicht der richtige weg.. aber wie kann ich das realisieren???

Bedanke mich schon einmal vorab.


Arbeitsblatt mit dem Namen 'Tabelle4'
ABC
1Test 1Test 2Test 3
2HalloHalloHallo - 100
3HyeHalloHallo - 200
4HyeHye - 100
5HyeHye - 200
6- 100
7- 200
8- 100
9- 200
10- 100

ZelleFormel
B2=INDEX(A:A;ZEILE()/2+1)
C2=WENN(ISTTEXT(B2);B2&" - 100";"")
B3=INDEX(A:A;ZEILE()/2+1)
C3=WENN(ISTTEXT(B3);B3&" - 200";"")
A4=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B4=INDEX(A:A;ZEILE()/2+1)
C4=WENN(ISTTEXT(B4);B4&" - 100";"")
A5=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B5=INDEX(A:A;ZEILE()/2+1)
C5=WENN(ISTTEXT(B5);B5&" - 200";"")
A6=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B6=INDEX(A:A;ZEILE()/2+1)
C6=WENN(ISTTEXT(B6);B6&" - 100";"")
A7=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B7=INDEX(A:A;ZEILE()/2+1)
C7=WENN(ISTTEXT(B7);B7&" - 200";"")
A8=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B8=INDEX(A:A;ZEILE()/2+1)
C8=WENN(ISTTEXT(B8);B8&" - 100";"")
A9=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B9=INDEX(A:A;ZEILE()/2+1)
C9=WENN(ISTTEXT(B9);B9&" - 200";"")
A10=WENN(ISTTEXT(#BEZUG!);#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!&" - "&#BEZUG!;"")
B10=INDEX(A:A;ZEILE()/2+1)
C10=WENN(ISTTEXT(B10);B10&" - 100";"")
Verwendete Systemkomponenten: [Windows (32-bit) NT :.00] MS Excel 2016
Diese Tabelle wurde mit Tab2Html (v2.6.0) erstellt. ©Gerd alias Bamberg
Hallo,

=WENN(B2="";"";B2&" - 100")

Gruß Uwe
:33:

Ohje, manchmal erkennt man die einfachste dinge nicht... 


DANKE!!!