TOP

Divisione automatica del testo in base al separatore specificato

YouLibreCalc for Excel logo

GETSUBSTR() Descrizione

Di seguito troverai una funzione che ti aiuterà a dividere il testo in parti in base al separatore specificato.


Codice VBA per la macro

Per aggiungere una macro, apri l'editor Visual Basic (Alt+F11), inserire un nuovo modulo software vuoto (Insert - Module) e copia lì il testo di questa funzione:

Function GETSUBSTR(Txt, Delimiter, n) As String
   'moonexcel.com.ua
   Dim x As Variant
      x = Split(Txt, Delimiter)
      If n > 0 And n - 1 <= UBound(x) Then
        GETSUBSTR = x(n - 1)
      Else
        GETSUBSTR = ""
      End If
End Function

Salva e torna a Excel. Ora nelle funzioni personalizzate puoi trovare la nostra funzione GETSUBSTR().

 =GETSUBSTR(testo; delimitatore; numero_sequenza_di_frammento) 

Dove:

Articoli sull'argomento: