Experimente com a UDF abaixo
Function Retorna_Texto(Cell As Range) As String
Dim LenStr As Long
For LenStr = 1 To Len(Cell)
Select Case Asc(Mid(Cell, LenStr, 1))
Case 0 To 47
Retorna_Texto = Retorna_Texto & Mid(Cell, LenStr, 1)
Case 65 To 90
Retorna_Texto = Retorna_Texto & Mid(Cell, LenStr, 1)
Case 91 To 127
Retorna_Texto = Retorna_Texto & Mid(Cell, LenStr, 1)
End Select
Next
End Function
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 14/03/2013 9:33 am