Macro partagée sur le forum

Sub Step4(Item As Outlook.MailItem)
Set attachs = Item.Attachments

For Each attach In attachs
file = attach.FileName
If LCase(Right(file, 3)) = "xls" Then
attach.SaveAsFile "X:\1-XLS_SAV\" & file
End If
Next
End Sub