Modificação do código VBA para manter a formatação de dados na planilha do Excel antes de copiar para o Outlook

0

Eu tenho um VBA que copia os detalhes de uma planilha do Excel para um corpo de email do Outlook: Abaixo está a macro:

Sub Send_Email()

Dim EmailSubject As String
Dim SendTo As String
Dim EmailBody As String
Dim ccTo As String

EmailSubject = "Test"
SendTo = "[email protected]"


FirstRow = 1 
LastRow = 5
FirstCol = 1 
LastCol = 2 

For r = FirstRow To LastRow
For c = FirstCol To LastCol

For Each cell In Cells(r, c)
strtable = strtable & "  " & cell.Value
Next
Next
strtable = strtable & vbNewLine
Next

EmailBody = "Hi" & vbLf & vbLf & " body" & vbLf & vbLf & strtable & vbNewLine 

Set App = CreateObject("Outlook.Application")
Set Itm = App.CreateItem(0)
With Itm
.Subject = EmailSubject
.To = SendTo
.CC = ccTo
.Body = EmailBody
.Display
'.Send
End With
Set App = Nothing
Set Itm = Nothing
End Sub

Mas os detalhes da planilha do excel estão em formato tabular, com alguma formatação. A tabela e a formatação podem ser mantidas quando os dados são copiados para o outlook? Se sim, como?

    
por LoneWolf91 11.12.2015 / 17:17

0 respostas