<p><strong>Méthode 1 : Barre d’état (StatusBar)</strong></p>
<pre data-code-wrap="vba"><code class="lang-vba">For i = 1 To 1000
Application.StatusBar = "Progression : " & Format(i / 1000, "0%")
' Votre code ici
Next
Application.StatusBar = False
</code></pre>
<p><strong>Méthode 2 : UserForm avec ProgressBar</strong><br>
Créez un UserForm avec un contrôle Label qui s’élargit pour simuler une barre de progression.</p>