Jump to content
Fórum Script Brasil
  • 0

Limpar tabulação


lcalegari

Question

Boa tarde.

Estou precisando de uma ajuda. Eu receb um arquivo no excel e preciso limpar certos caracteres, assim como ",",".","-" e etc. Até ai eu consegui fazer numa boa. Mas meu problema veio na hora de limpar tabulação "" que tem um ponnto de interrogação no centro.

Eu fiz algo assim:

Option Explicit

Public Sub LimpaTab()

Dim varColuna As Integer

Dim varLinha As Integer

Dim varIndice As Integer

varColuna = 1

Do While Cells(1, varColuna) <> ""

varColuna = varColuna + 1

Loop

varColuna = varColuna - 1

varLinha = 2

Do While Range("A" & varLinha) <> ""

For varIndice = 1 To varColuna

Cells(varLinha, varIndice).Select

On Error Resume Next

Cells(varLinha, varIndice) = Replace(Replace(Replace(Replace(Replace(Cells(varLinha, varIndice), vbTab, " "), vbCrLf, " "), Chr(10), " "), Chr(13), ""), "", "")

Next varIndice

DoEvents

varLinha = varLinha + 1

Loop

MsgBox "Finalizado", vbInformation

End Sub

Mas não adianta. Vocês podem me ajudar por favor. Obrigado

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...