Quando você move um item, um novo item é criado. Você precisa fazer a resposta no novo item.
Sub FileAndReply()
'This subroutine will move the highlighted email to a user selected folder
'and generate a reply that will be saved in the same folder.
'PROBABLY: Must have Save copy of messages in Sent folder set.
'MAYBE: Must have When replying to a message that is not in the Inbox, save...
Dim olApp As New Outlook.Application
Dim olExp As Outlook.Explorer
Dim olSel As Outlook.Selection
Dim olNS As Outlook.NameSpace
Dim olFolder As Outlook.folder
Dim olItem As Outlook.MailItem
Set olExp = olApp.ActiveExplorer
Set olSel = olExp.Selection
Set olItem = olSel.Item(1)
Set olNS = olApp.GetNamespace("MAPI")
'get folder user wants to put email in
Set olFolder = olNS.PickFolder
If TypeName(olFolder) <> "Nothing" Then
Set olItem = olItem.Move(olFolder)
Set olItem = olItem.Reply
'TO BE FIXED: reply object is created, but original message does
'not get the icon showing replied to purple arrow!
Set olItem.SaveSentMessageFolder = olFolder
olItem.Display
Else
MsgBox ("No folder selected. Script aborted.")
End If
End Sub