Création fichier txt à partir tableau excel
Fermé
rem81
Messages postés
3
Date d'inscription
mardi 18 novembre 2014
Statut
Membre
Dernière intervention
23 novembre 2014
-
18 nov. 2014 à 15:59
pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 - 24 nov. 2014 à 09:15
pijaku Messages postés 12263 Date d'inscription jeudi 15 mai 2008 Statut Modérateur Dernière intervention 4 janvier 2024 - 24 nov. 2014 à 09:15
A voir également:
- Vba créer un fichier txt
- Créer un compte gmail - Guide
- Créer un compte google - Guide
- Créer un groupe whatsapp - Guide
- Fichier rar - Guide
- Comment ouvrir un fichier epub ? - Guide
3 réponses
pijaku
Messages postés
12263
Date d'inscription
jeudi 15 mai 2008
Statut
Modérateur
Dernière intervention
4 janvier 2024
2 752
18 nov. 2014 à 16:44
18 nov. 2014 à 16:44
Bonjour,
Un exemple de code :
Un exemple de code :
Sub CreerTxt() Dim Donnees(95) Dim Lig As Integer Dim Chemin As String, NomFic As String Chemin = ThisWorkbook.Path & "\" NomFic = ThisWorkbook.Name & " " & Format(Now, "ddmmyyyyhhmmss") & ".txt" With ActiveSheet For Lig = 9 To 104 Donnees(Lig - 9) = .Cells(Lig, 5) & " ; " & .Cells(Lig, 8) & " ; " & .Cells(Lig, 9) & " ; " & .Cells(Lig, 10) & " ; " & .Cells(Lig, 11) & " ; " & .Cells(Lig, 12) & " ; " & .Cells(Lig, 13) Next Lig End With Open Chemin & NomFic For Output As #1 For Lig = LBound(Donnees) To UBound(Donnees) Print #1, Donnees(Lig) Next Close #1 End Sub