Bonjour,
j'ai des problèmes avec les 2 lignes bleu:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
    Dim FL1 As Worksheet
    Set FL1 = ActiveSheet
    With FL1.Shapes(FL1.Shapes.Count)
        .Select
        
        .Top = Cells(j + 17, p).Top
        .Left = Cells(j + 17, m).Left
        
        .Width = 185
        .Height = 135
    End With
Dans la structure des cells j+17 représente ma ligne avec j variable integer et p représente ma colonne avec p variable integer.
Est ce que quelqu'un peut m'aider?