Affichage d'un tableau dans une MsgBox
Résolu/Fermé
A voir également:
- Afficher un tableau vba
- Tableau croisé dynamique - Guide
- Impossible d'afficher le rapport de tableau croisé dynamique sur un rapport existant ✓ - Forum Excel
- Tableau ascii - Guide
- Comment faire un tableau - Guide
- Trier un tableau excel - Guide
6 réponses
En espérant que ça réponde à ta question,
pour un tableau deux dimensions:
ligne = ""
For i = 1 To 5
frag = ""
For j = 1 To 5
frag = frag & tableau(i, j)
Next j
ligne = ligne & frag & Chr(13)
Next i
MsgBox ligne
Pour un tableau à une dimension c'est plus simple
ligne=""
For i = 1 To 5
ligne = ligne & tableau(i, j) & Chr(13)
Next i
MsgBox ligne
pour un tableau deux dimensions:
ligne = ""
For i = 1 To 5
frag = ""
For j = 1 To 5
frag = frag & tableau(i, j)
Next j
ligne = ligne & frag & Chr(13)
Next i
MsgBox ligne
Pour un tableau à une dimension c'est plus simple
ligne=""
For i = 1 To 5
ligne = ligne & tableau(i, j) & Chr(13)
Next i
MsgBox ligne
8 août 2008 à 14:14
pour une dimension, il faut lire:
ligne = ligne & tableau(i) & Chr(13)