Exportation de colonnes vers un fichier .txt en macro
Résolu/Fermé
halozero1530
Messages postés
597
Date d'inscription
vendredi 26 avril 2013
Statut
Membre
Dernière intervention
25 juillet 2022
-
9 nov. 2015 à 17:58
halozero1530 Messages postés 597 Date d'inscription vendredi 26 avril 2013 Statut Membre Dernière intervention 25 juillet 2022 - 20 nov. 2015 à 14:08
halozero1530 Messages postés 597 Date d'inscription vendredi 26 avril 2013 Statut Membre Dernière intervention 25 juillet 2022 - 20 nov. 2015 à 14:08
A voir également:
- Exportation de colonnes vers un fichier .txt en macro
- Fichier rar - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Telecharger macro convertir chiffre en lettre excel - Télécharger - Tableur
- Ouvrir un fichier .bin - Guide
1 réponse
Bonjour
voila une macro export TXT
A+
Maurice
voila une macro export TXT
Sub CreatColonne() Col = 10 Lig = 1 Columns(Col).ClearContents For C = 1 To 3 For L = 1 To 3 Cells(Lig, Col).Value = Cells(L, C).Value Lig = Lig + 1 Next Next For C = 1 To 2 For L = 1 To 2 Cells(Lig, Col).Value = Cells(L, C).Value Lig = Lig + 1 Next Next ExportTxt Col End Sub Sub ExportTxt(Col) Nom = "Test" Ext = ".txt" Fichier = Nom & Ext Chemin = ActiveWorkbook.Path & Application.PathSeparator CheminFiche = Chemin & Fichier Nlig = Cells(Rows.Count, Col).End(xlUp).Row Open CheminFiche For Output As #1 For L = 1 To Nlig ligne = "" ligne = Cells(L, Col).Value Print #1, ligne Next Close End Sub
A+
Maurice
20 nov. 2015 à 14:08