Italian Excel formula
=SE.ERRORE(DESTRA(A2;LUNGHEZZA(A2)-TROVA("_";A2));A2)
Extract only the text after a symbol.
=SE.ERRORE(DESTRA(A2;LUNGHEZZA(A2)-TROVA("_";A2));A2)
=IFERROR(RIGHT(A2,LEN(A2)-FIND("_",A2)),A2)
amitraz_123 becomes 123.
Common errorWith multiple underscores this formula uses the first one.
The formula calculates how many characters are after the symbol.
It is useful for codes and imported columns.
Yes.
Yes.