Bonjour
Tu as plusieurs macros
Je n'ai regardé que la macro associée au bouton en Feuil1
Option Explicit
Sub RondsExpl()
Dim i As Integer
On Error Resume Next
With Sheets("Feuil1")
For i = 1 To 95
With .Shapes("dept" & Cells(i + 2, 15))
.Height = Cells(i + 2, 16).Value * 20
.Width = Cells(i + 2, 16).Value * 20
End With
Next i
End With
End Sub