woulf Lurker intensif | bonjour, si j'ai bien compris ton besoin ce code devrait faire l'affaire :
Code :
- Sub exporttotxt()
- Dim maxligne As Integer
- Dim maxcolones As Integer
- maxlignes = CInt(InputBox("nombre de ligne?", "Nombre de ligne", "" ))
- maxcolones = CInt(InputBox("nombre de colonnes?", "Nombre de colonnes", "" ))
- myfile = InputBox("Chemin du fichier txt?", "Chemin du fichier txt", "c:\" )
- fnum = FreeFile()
- Open myfile For Output As fnum
- For i = 1 To maxcolones
- For j = 1 To maxlignes
- Print #fnum, ActiveSheet.Cells(j, i).Value
- Next j
- Next i
- Close #fnum
- End Sub
|
|