Blog Archive
-
▼
2005
(103)
-
▼
fevereiro
(17)
- Obrigado, John Walkenbach!
- VBA: Enviar dados do Excel para o WinWord
- VBA & Excel: Mais uma UDF
- VBA & Excel: Ainda a propósito de Comentários.
- VBA: Ainda o Comentário
- VBA: Inserir Comentários em Células
- Excel: a Função CLEAN() ou LIMPARB()
- Novo Blog de Excel
- Excel: Ainda a troca de posição do sinal menos (-)
- Excel: Trocar a posição do sinal (-)
- Novo Blog de Excel em Português
- Excel: Ainda a Função SUMPRODUCT()
- Excel: Ainda as Funções SUMPRODUCT() e TEXT(). Uti...
- VBE & Excel: Função definida pelo Utilizador - Con...
- Excel:Preenchimento de Colunas
- Excel: As Funções SUMPRODUCT e TEXT
- VBE: Formatação Condicional - mais do que 3 condições
-
▼
fevereiro
(17)
About Me
Com tecnologia do Blogger.
Seguidores
Estatisticas
2005-02-06
VBE & Excel: Função definida pelo Utilizador - ConcSep()
5:04 da tarde |
Publicada por
JRod - PORTUGAL |
Editar mensagem
Em Excel Pragma, foi apresentada uma Função definida pelo utilizador, a qual, porque prática, aqui apresento, a título de exemplo:
O Código:
Public Function ConcSep(InCells As Range, Sep As String) As String
Dim OutStr As String
Dim Cell As Variant
OutStr = ""
If InCells Is Nothing Then Exit Function
On Error Resume Next
For Each Cell In InCells
OutStr = OutStr & Cell.Value & Sep
Next Cell
OutStr = Left(OutStr, Len(OutStr) - Len(Sep))
ConcSep = OutStr
End Function
O Código:
Public Function ConcSep(InCells As Range, Sep As String) As String
Dim OutStr As String
Dim Cell As Variant
OutStr = ""
If InCells Is Nothing Then Exit Function
On Error Resume Next
For Each Cell In InCells
OutStr = OutStr & Cell.Value & Sep
Next Cell
OutStr = Left(OutStr, Len(OutStr) - Len(Sep))
ConcSep = OutStr
End Function