Join
the community
Sign-up
Ask a question »

Import file names in Excel

May 2013


Import file names in Excel



Issue


I have a folder with a series of Outlook files (with the .msg extension), and I want to import all file names in an Excel file (2007). Is there any macro for this purpose?

Issue


Upon syncing my iPhone to iTunes, I'm getting the following error message:
  • Error 13019.

Solution


Adapt this code accordingly:
Sub repertorier_fichier()
    Dim Chemin As String, Fichier As String
    
    'indique le répertoire contenant les fichiers
    Chemin = "C:\MONDOSSIER\"
    
    'Boucle sur tous les fichiers msg du répertoire.
    Fichier = Dir(Chemin & "*.msg")

    numligne = 1
    
    Do While Len(Fichier) > 0
        Sheets("Feuil1").Range("A" & numligne).Value = Fichier
        numligne = numligne + 1
        Fichier = Dir()
    Loop
End Sub

Thanks to rv83toulon for this tip.

See also

Knowledge communities.

Published by aakai1056
This document entitled « Import file names in Excel » from Kioskea (en.kioskea.net) is made available under the Creative Commons license. You can copy, modify copies of this page, under the conditions stipulated by the license, as this note appears clearly.
Receive our newsletter

health.kioskea.net

Excel - Using SUMIF function with two criteria
Excel - Convert numbers to words