[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

How do I save incoming email attachment to a specific folder

Asked by Amreska in Outlook Groupware Software, Visual Basic Programming

I would like to save incoming email excel attachment into specific folder. The excel file name will have the following example name format: John_Mary_Steve_200908.xls or John_Mary_Steve_200908-01.xls .    I want the macro to pick the keyword "200908" or "200908-01"and put it in the folder named August 2009.  Because 200908 corresponds to August 2009.   I have a macro below that works for John_Mary_Steve_200908.xls and not for John_Mary_Steve_200908-01.xls

Thanks,
Amreska
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
Sub saveXLAttachments(mai As MailItem)
Dim dosFolderPath As String
Dim tmpFolderPath As String
Dim intIncrement As Integer
Dim intAtt As Integer
Dim att As Attachment
Dim fn As String
Dim ft As String
Dim fso As Object
 
    dosFolderPath = "c:\deleteme"
    If Right(dosFolderPath, 1) <> "\" Then dosFolderPath = dosFolderPath & "\"
    Set fso = CreateObject("scripting.filesystemobject")
    For intAtt = mai.Attachments.Count To 1 Step -1
        Set att = mai.Attachments(intAtt)
        intIncrement = 1
        fn = Left(att.FileName, InStrRev(att.FileName, ".") - 1)
        ft = Right(att.FileName, Len(att.FileName) - InStrRev(att.FileName, ".") + 1)
        If LCase(ft) = ".xls" Then
            If Len(fn) > 6 Then
                If IsNumeric(Right(fn, 6)) Then
                    If CInt(Right(fn, 2)) > 0 And CInt(Right(fn, 2)) <= 12 Then
                        tmpFolderPath = dosFolderPath & MonthName(CInt(Right(fn, 2))) & " " & Left(Right(fn, 6), 4) & "\"
                        md tmpFolderPath, True
                        Do While fso.FileExists(tmpFolderPath & fn & "_" & intIncrement & ft)
                            intIncrement = intIncrement + 1
                        Loop
                        att.SaveAsFile tmpFolderPath & fn & "_" & intIncrement & ft
                    End If
                End If
            End If
        End If
    Next
 
Set fso = Nothing
End Sub
 
 
 
 
 
Function md(dosPath As String, Optional createFolders As Boolean) As String
Dim fso As Object
Dim fldrs() As String
Dim rootdir As String
Dim fldrIndex As Integer
Dim bolret As Boolean
    
    md = ""
    Set fso = CreateObject("Scripting.FileSystemObject")
    If Not fso.FolderExists(dosPath) Then
        fldrs = Split(dosPath, "\")
        rootdir = fldrs(0)
        If Not fso.FolderExists(rootdir) Then
            Exit Function
        End If
 
        bolret = True
        For fldrIndex = 1 To UBound(fldrs) - 1
            rootdir = rootdir & "\" & fldrs(fldrIndex)
            If Not fso.FolderExists(rootdir) Then
                If createFolders Then
                    fso.CreateFolder rootdir
                Else
                    bolret = False
                End If
            End If
        Next
        If bolret Then
            For Each fldr In fso.getfolder(rootdir).SubFolders
                If Left(fldr.Name, 2) = fldrs(UBound(fldrs)) Then
                    md = fldr.Path
                    Exit Function
                End If
            Next
        End If
        Exit Function
    End If
End Function
 
Related Solutions
Keywords: How do I save incoming email attachme…
 
Loading Advertisement...
 
[+][-]11/04/09 05:17 PM, ID: 25745928Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Outlook Groupware Software, Visual Basic Programming
Sign Up Now!
Solution Provided By: BlueDevilFan
Participating Experts: 2
Solution Grade: A
 
[+][-]10/26/09 06:29 AM, ID: 25662001Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/26/09 11:04 AM, ID: 25664947Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/28/09 10:00 AM, ID: 25685453Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/28/09 10:04 AM, ID: 25685495Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/30/09 08:17 AM, ID: 25703805Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_Related_20080208