Suchen/Ersetzen in Excel

Copper Contributor

Hallo Zusammen,

 

ich habe eine Zelle da steht drin 22,22 (18,23). Die muss ich so bearbeiten, das da nur noch 18,23 steht.

Wie kann ich das machen?

 

DANKE und viele Grüße aus München

Susanne

1 Reply

@Susanne_Moszner 

Suppose that the text  22,22 (18,23) is in A1, then the following formula will extract 18,23 as a text.

 

=MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1)

 

In case you want to extract the value of the numbers that are enclosed in the brackets, and provided that you have the comma as the decimal separator, try this one:

 

=VALUE(MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1))

 

 

EDIT: I suspect you have German Excel, so the formulae would be:

=TEIL(A1;FINDEN("(";A1)+1;FINDEN(")";A1)-FINDEN("(";A1)-1)

and 

=WERT(TEIL(A1;FINDEN("(";A1)+1;FINDEN(")";A1)-FINDEN("(";A1)-1))