A voir également:
- Afficher un tableau vba
- Afficher tableau vba - Meilleures réponses
- Afficher un tableau vba dans une feuille - Meilleures réponses
- Afficher un tableau vba dans une feuille ✓ - Forum - VB / VBA
- Affichage tableau dans MsgBox VBA excel - Forum - VB / VBA
- Coller un tableau sur une nouvelle feuille ✓ - Forum - VB / VBA
- Afectation d'une plage a un tableau VBA ✓ - Forum - VB / VBA
- Afficher un tableau Excel dans un userform VBA excel ✓ - Forum - VB / VBA
6 réponses
Bonjour,
Exemple type :
Lupin
Exemple type :
Option Explicit Sub AfficheTableau() Dim Tableau(1 To 10) As String Dim strMessage As String, Boucle As Integer Tableau(1) = "France" Tableau(2) = "Espagne" Tableau(3) = "Italie" Tableau(4) = "Chine" Tableau(5) = "Portugal" Tableau(6) = "Canada" Tableau(7) = "Brésil" Tableau(8) = "Argentine" Tableau(9) = "Vénézuela" Tableau(10) = "Australie" strMessage = "" For Boucle = 1 To 10 strMessage = strMessage & Tableau(Boucle) & vbLf Next Boucle MsgBox strMessage End Sub '
Lupin