IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Macros et VBA Excel Discussion :

Macro évenementielle et boucle for


Sujet :

Macros et VBA Excel

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre habitué
    Femme Profil pro
    Étudiant
    Inscrit en
    Juillet 2018
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Finance

    Informations forums :
    Inscription : Juillet 2018
    Messages : 8
    Par défaut Macro évenementielle et boucle for
    Bonjour à tous, j'ai une serieux soucis voici maintenant deux jours que je n'y arrive pas. J'espère de tout coeur que vous pourriez m'éclairer.
    Je cherche à remplir un template en fonction d'un changement dans ma liste deroulante pour se faire j'ai écrit les 3 macro suivante:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    Sub update1()
    Dim i, j, k, l, m As Long
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
    k = 3
    For j = 3 To 52
        For l = 15 To 20
            For i = 15 To 24
     
                    S4.Cells(8, 22) = S3.Cells(2, j)
                    S4.Cells(7, 3) = S3.Cells(5, j)
                    S4.Cells(9, 3) = S3.Cells(4, j)
                    S4.Cells(i, 6) = Application.VLookup(S4.Cells(i, 3), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
                    S4.Cells(i, 12) = Application.VLookup(S4.Cells(i, 9), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
     
            Next i
            S4.Cells(l, 18) = Application.VLookup(S4.Cells(l, 15), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
            S4.Cells(21, 18) = "Y"
        Next l
        k = k + 1
     
    Next j
     
    End Sub


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    Sub update2()
    Dim m, j As Long
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
     
        For j = 3 To 52
            For m = 3 To 52
     
                S4.Cells(8, 22) = S3.Cells(2, j)
                S4.Range(S4.Cells(28, 6), S4.Cells(34, 6)).Value = S3.Range(S3.Cells(155, m), S3.Cells(161, m)).Value
                S4.Range(S4.Cells(28, 9), S4.Cells(34, 9)).Value = S3.Range(S3.Cells(124, m), S3.Cells(133, m)).Value
                S4.Range(S4.Cells(28, 12), S4.Cells(34, 12)).Value = S3.Range(S3.Cells(134, m), S3.Cells(143, m)).Value
                S4.Range(S4.Cells(28, 18), S4.Cells(30, 18)).Value = S3.Range(S3.Cells(234, m), S3.Cells(236, m)).Value
                S4.Range(S4.Cells(38, 3), S4.Cells(47, 3)).Value = S3.Range(S3.Cells(164, m), S3.Cells(173, m)).Value
                S4.Range(S4.Cells(38, 6), S4.Cells(47, 6)).Value = S3.Range(S3.Cells(174, m), S3.Cells(183, m)).Value
                S4.Range(S4.Cells(38, 9), S4.Cells(47, 9)).Value = S3.Range(S3.Cells(104, m), S3.Cells(113, m)).Value
                S4.Range(S4.Cells(38, 12), S4.Cells(47, 12)).Value = S3.Range(S3.Cells(114, m), S3.Cells(123, m)).Value
                S4.Range(S4.Cells(38, 15), S4.Cells(47, 15)).Value = S3.Range(S3.Cells(84, m), S3.Cells(93, m)).Value
                S4.Range(S4.Cells(38, 18), S4.Cells(47, 18)).Value = S3.Range(S3.Cells(94, m), S3.Cells(103, m)).Value
     
            Next m
     
     
    Next j
     
    End Sub
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    Private Sub worksheet_change(ByVal target As Range)
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
     
        If target.Address = S4.Cells(8, 22) Then
            Call update1
            Call update2
     
            end if
    End Sub
    Ce que je souhaite c'est que avant que ma boucle passe à la prochaine valeur dans le cas de ma macro 1 , la premiere boucle de la macro 2 s'execute et passe la main a la premiere macro pour l'xécution de la prochaine valeur. j'espère etre claire en vous remerciant par avance.

  2. #2
    Nouveau candidat au Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2017
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Juin 2017
    Messages : 2
    Par défaut
    Bonjour,

    Si je comprends bien, pas besoin de faire 2 boucles, tu veux faire ça :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
     
    Sub update()
     
    Dim i, j, k, l, m As Long
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
    k = 3
    For j = 3 To 52
        For l = 15 To 20
            For i = 15 To 24
     
                    S4.Cells(8, 22) = S3.Cells(2, j)
                    S4.Cells(7, 3) = S3.Cells(5, j)
                    S4.Cells(9, 3) = S3.Cells(4, j)
                    S4.Cells(i, 6) = Application.VLookup(S4.Cells(i, 3), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
                    S4.Cells(i, 12) = Application.VLookup(S4.Cells(i, 9), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
     
            Next i
            S4.Cells(l, 18) = Application.VLookup(S4.Cells(l, 15), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
            S4.Cells(21, 18) = "Y"
        Next l
        k = k + 1
     
        For m = 3 To 52
     
            S4.Cells(8, 22) = S3.Cells(2, j)
            S4.Range(S4.Cells(28, 6), S4.Cells(34, 6)).Value = S3.Range(S3.Cells(155, m), S3.Cells(161, m)).Value
            S4.Range(S4.Cells(28, 9), S4.Cells(34, 9)).Value = S3.Range(S3.Cells(124, m), S3.Cells(133, m)).Value
            S4.Range(S4.Cells(28, 12), S4.Cells(34, 12)).Value = S3.Range(S3.Cells(134, m), S3.Cells(143, m)).Value
            S4.Range(S4.Cells(28, 18), S4.Cells(30, 18)).Value = S3.Range(S3.Cells(234, m), S3.Cells(236, m)).Value
            S4.Range(S4.Cells(38, 3), S4.Cells(47, 3)).Value = S3.Range(S3.Cells(164, m), S3.Cells(173, m)).Value
            S4.Range(S4.Cells(38, 6), S4.Cells(47, 6)).Value = S3.Range(S3.Cells(174, m), S3.Cells(183, m)).Value
            S4.Range(S4.Cells(38, 9), S4.Cells(47, 9)).Value = S3.Range(S3.Cells(104, m), S3.Cells(113, m)).Value
            S4.Range(S4.Cells(38, 12), S4.Cells(47, 12)).Value = S3.Range(S3.Cells(114, m), S3.Cells(123, m)).Value
            S4.Range(S4.Cells(38, 15), S4.Cells(47, 15)).Value = S3.Range(S3.Cells(84, m), S3.Cells(93, m)).Value
            S4.Range(S4.Cells(38, 18), S4.Cells(47, 18)).Value = S3.Range(S3.Cells(94, m), S3.Cells(103, m)).Value
     
        Next m
     
    Next j
     
    End Sub

  3. #3
    Membre habitué
    Femme Profil pro
    Étudiant
    Inscrit en
    Juillet 2018
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Finance

    Informations forums :
    Inscription : Juillet 2018
    Messages : 8
    Par défaut
    je peux le faire comme ca mais le problème reste le meme, par exemple je veux que :
    apres que j=3,l=15 et i=15 passer a ma deuxieme macro et l'executer pour j=3 et m=3 ainsi de suite

  4. #4
    Nouveau candidat au Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2017
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Juin 2017
    Messages : 2
    Par défaut
    Ne voudrais-tu pas mettre des paramètres à la fonction update2 comme l'exemple qui suit ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    Sub update1()
    Dim i, j, k, l, m As Long
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
    k = 3
    For j = 3 To 52
        For l = 15 To 20
            For i = 15 To 24
     
                    S4.Cells(8, 22) = S3.Cells(2, j)
                    S4.Cells(7, 3) = S3.Cells(5, j)
                    S4.Cells(9, 3) = S3.Cells(4, j)
                    S4.Cells(i, 6) = Application.VLookup(S4.Cells(i, 3), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
                    S4.Cells(i, 12) = Application.VLookup(S4.Cells(i, 9), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
     
            Next i
            S4.Cells(l, 18) = Application.VLookup(S4.Cells(l, 15), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
            S4.Cells(21, 18) = "Y"
        Next l
        k = k + 1
        update2(j, j)
    Next j
     
    End Sub
     
     
    Sub update2(jInit As Long, mInit As Long)
     
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
     
        For j = jInit  To 52
            For m = mInit To 52
     
                S4.Cells(8, 22) = S3.Cells(2, j)
                S4.Range(S4.Cells(28, 6), S4.Cells(34, 6)).Value = S3.Range(S3.Cells(155, m), S3.Cells(161, m)).Value
                S4.Range(S4.Cells(28, 9), S4.Cells(34, 9)).Value = S3.Range(S3.Cells(124, m), S3.Cells(133, m)).Value
                S4.Range(S4.Cells(28, 12), S4.Cells(34, 12)).Value = S3.Range(S3.Cells(134, m), S3.Cells(143, m)).Value
                S4.Range(S4.Cells(28, 18), S4.Cells(30, 18)).Value = S3.Range(S3.Cells(234, m), S3.Cells(236, m)).Value
                S4.Range(S4.Cells(38, 3), S4.Cells(47, 3)).Value = S3.Range(S3.Cells(164, m), S3.Cells(173, m)).Value
                S4.Range(S4.Cells(38, 6), S4.Cells(47, 6)).Value = S3.Range(S3.Cells(174, m), S3.Cells(183, m)).Value
                S4.Range(S4.Cells(38, 9), S4.Cells(47, 9)).Value = S3.Range(S3.Cells(104, m), S3.Cells(113, m)).Value
                S4.Range(S4.Cells(38, 12), S4.Cells(47, 12)).Value = S3.Range(S3.Cells(114, m), S3.Cells(123, m)).Value
                S4.Range(S4.Cells(38, 15), S4.Cells(47, 15)).Value = S3.Range(S3.Cells(84, m), S3.Cells(93, m)).Value
                S4.Range(S4.Cells(38, 18), S4.Cells(47, 18)).Value = S3.Range(S3.Cells(94, m), S3.Cells(103, m)).Value
     
            Next m
     
     
    Next j
     
    End Sub

  5. #5
    Membre habitué
    Femme Profil pro
    Étudiant
    Inscrit en
    Juillet 2018
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Finance

    Informations forums :
    Inscription : Juillet 2018
    Messages : 8
    Par défaut
    Merci beaucoup,
    tu avais raison, j'ai plutot regroupé toutes mes macros dans une meme boucle et ca marche, ca donne ca:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    Sub update1()
    Dim i, j, k, l, m As Long
    Dim S3, S4 As Worksheet
    Set S3 = Sheets("calcul")
    Set S4 = Sheets("ETF 1")
    k = 3
     
    For j = 3 To 52
        For l = 15 To 20
            For i = 15 To 24
     
                    S4.Cells(8, 22) = S3.Cells(2, j)
                    S4.Cells(7, 3) = S3.Cells(5, j)
                    S4.Cells(9, 3) = S3.Cells(4, j)
                    S4.Cells(i, 6) = Application.VLookup(S4.Cells(i, 3), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
                    S4.Cells(i, 12) = Application.VLookup(S4.Cells(i, 9), S3.Range(S3.Cells(2, 1), S3.Cells(83, 52)), k, False)
     
                    S4.Range(S4.Cells(28, 6), S4.Cells(34, 6)).Value = S3.Range(S3.Cells(155, j), S3.Cells(161, j)).Value
                    S4.Range(S4.Cells(28, 9), S4.Cells(34, 9)).Value = S3.Range(S3.Cells(124, j), S3.Cells(133, j)).Value
                    S4.Range(S4.Cells(28, 12), S4.Cells(34, 12)).Value = S3.Range(S3.Cells(134, j), S3.Cells(143, j)).Value
                    S4.Range(S4.Cells(28, 18), S4.Cells(30, 18)).Value = S3.Range(S3.Cells(234, j), S3.Cells(236, j)).Value
                    S4.Range(S4.Cells(38, 3), S4.Cells(47, 3)).Value = S3.Range(S3.Cells(164, j), S3.Cells(173, j)).Value
                    S4.Range(S4.Cells(38, 6), S4.Cells(47, 6)).Value = S3.Range(S3.Cells(174, j), S3.Cells(183, j)).Value
                    S4.Range(S4.Cells(38, 9), S4.Cells(47, 9)).Value = S3.Range(S3.Cells(104, j), S3.Cells(113, j)).Value
                    S4.Range(S4.Cells(38, 12), S4.Cells(47, 12)).Value = S3.Range(S3.Cells(114, j), S3.Cells(123, j)).Value
                    S4.Range(S4.Cells(38, 15), S4.Cells(47, 15)).Value = S3.Range(S3.Cells(84, j), S3.Cells(93, j)).Value
                    S4.Range(S4.Cells(38, 18), S4.Cells(47, 18)).Value = S3.Range(S3.Cells(94, j), S3.Cells(103, j)).Value
                    Next l
        k = k + 1
     
    Next j
     
    End Sub
    et pour optimiser je vais suivre ton exemple

Discussions similaires

  1. Macro Excel avec boucle for
    Par shadown08 dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 06/06/2017, 12h17
  2. [XL-2010] Macro évenementielle + boucle for
    Par Hanz2.0 dans le forum Macros et VBA Excel
    Réponses: 17
    Dernier message: 22/08/2014, 08h35
  3. [XL-2003] Macro boucle for next trop lente
    Par sixtm dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 09/06/2011, 17h08
  4. [VBA-E] Macro boucle for (erreur 424)
    Par vanexq dans le forum Macros et VBA Excel
    Réponses: 9
    Dernier message: 14/09/2010, 13h58
  5. Problème boucle For et interface paramètrage macro
    Par sangoben dans le forum Macros et VBA Excel
    Réponses: 2
    Dernier message: 28/05/2010, 15h12

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo