I would like to show in row A if there is a certain text “Miete” is present in row B or C.
I used in german LibreOffice calc in field A1
:
=(SUCHEN("Miete"; B1)+SUCHEN("Miete"; C1))>0
which works a bit but only if Miete is in both fields
I would like to show in row A if there is a certain text “Miete” is present in row B or C.
I used in german LibreOffice calc in field A1
:
=(SUCHEN("Miete"; B1)+SUCHEN("Miete"; C1))>0
which works a bit but only if Miete is in both fields
Hab dies fälschlicherweise auf englisch gepostet, hier die Deutsche Frage:
Und Antwort:
=WENN(
ODER(
NICHT(ISTFEHLER(SUCHEN("Miete"; A2)));
NICHT(ISTFEHLER(SUCHEN("Miete"; B2)))
);
C2;"")