Bonjour à vous tous ,
En PJ , un exemple d'une macro qui fonctionne très bien sur toutes les feuilles. Cependant, j'aurais souhaité que cette action ne s'applique pas sur l'onglet "PARAM".
Par avance , merci et bonne journée
Sub sautpage()
Dim xSh As Worksheet
Application.ScreenUpdating = False
For Each xSh In Worksheets
If xSh.Name <> "PARAM" Then
xSh.Select
Call RunCode
End If
Next
Application.ScreenUpdating = True
End Sub
Sub sautpage()
Dim xSh As Worksheet
Application.ScreenUpdating = False
For Each xSh In Worksheets
If xSh.Name <> "PARAM" Then
xSh.Select
Call RunCode
End If
Next
Application.ScreenUpdating = True
End Sub
Edit Bonjour @Orson83 et @Lolote83 Désolé pour le doublon mais pb de rafraichissement
Je te propose ce code à la place de ton code
VB:
Sub sautpage()
Dim xSh As Worksheet
Application.ScreenUpdating = False
For Each xSh In Worksheets
If xSh.Name <> "PARAM" Then
xSh.Select
Call RunCode
End If
Next
End Sub