VBA: Range avec variable
Fermé
jmarichal
-
7 juil. 2008 à 10:24
Shooshoo Messages postés 1 Date d'inscription jeudi 25 avril 2013 Statut Membre Dernière intervention 25 avril 2013 - 25 avril 2013 à 15:07
Shooshoo Messages postés 1 Date d'inscription jeudi 25 avril 2013 Statut Membre Dernière intervention 25 avril 2013 - 25 avril 2013 à 15:07
A voir également:
- Vba range avec variable
- Range avec variable vba - Meilleures réponses
- Vba range variable - Meilleures réponses
- VBA : Range avec références variables.. ✓ - Forum VB / VBA
- Input signal out of range ✓ - Forum Matériel & Système
- L'indice n'appartient pas à la sélection vba - Forum VB / VBA
- Syntaxe VBA Sheets.Range avec Range variable ✓ - Forum VB / VBA
- Vba ouvrir un fichier excel avec chemin ✓ - Forum VB / VBA
3 réponses
michel_m
Messages postés
16603
Date d'inscription
lundi 12 septembre 2005
Statut
Contributeur
Dernière intervention
16 décembre 2023
3 310
7 juil. 2008 à 10:35
7 juil. 2008 à 10:35
Bonjour,
Sub selectionner_zone()
Dim myrange As Range
j = Range("A1").CurrentRegion.Rows.Count
Set myrange = Range(Cells(j, 1), Cells(j, 3))
'test macro: on colorie la zone sélectionnée myrange en jaune
myrange.Interior.ColorIndex = 6
Set myrange = Nothing
End Sub
il fallait déclarer et instancier myrange
activecell ne servait à rien
Michel
Sub selectionner_zone()
Dim myrange As Range
j = Range("A1").CurrentRegion.Rows.Count
Set myrange = Range(Cells(j, 1), Cells(j, 3))
'test macro: on colorie la zone sélectionnée myrange en jaune
myrange.Interior.ColorIndex = 6
Set myrange = Nothing
End Sub
il fallait déclarer et instancier myrange
activecell ne servait à rien
Michel