Extrair Texto Excel - Separar Texto Excel

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

ความคิดเห็น • 1

  • @ExcelEasyBR
    @ExcelEasyBR  7 หลายเดือนก่อน +2

    Código VBA mostrado no vídeo:
    '-----------------------------------------------------------------------
    Function ExtrairTexto(CellRef As String)
    Dim TamanhoTexto As Integer
    TamanhoTexto = Len(CellRef)
    For i = 1 To TamanhoTexto
    If Not (IsNumeric(Mid(CellRef, i, 1))) Then Resultado = Resultado & Mid(CellRef, i, 1)
    Next i
    ExtrairTexto = Resultado
    End Function