Barre de progression
Résolu/Fermé
A voir également:
- Barre de progression
- Windows 11 barre des taches a gauche - Guide
- Barre verticale mac - Forum MacOS
- Barré whatsapp - Guide
- Egal barré - Forum Clavier
- Barre de progression word cv - Forum Word
2 réponses
M-12
Messages postés
1331
Date d'inscription
lundi 22 septembre 2008
Statut
Membre
Dernière intervention
8 avril 2023
283
7 févr. 2019 à 08:14
7 févr. 2019 à 08:14
Bonjour,
Au lieu d'une barre de progression qui va alourdir un peu plus
place cette ligne en début de macro
Cela évite le rafraîchissement de l'écran
Au lieu d'une barre de progression qui va alourdir un peu plus
place cette ligne en début de macro
Application.ScreenUpdating = False
Cela évite le rafraîchissement de l'écran
f894009
Messages postés
17206
Date d'inscription
dimanche 25 novembre 2007
Statut
Membre
Dernière intervention
22 novembre 2024
1 711
Modifié le 7 févr. 2019 à 08:24
Modifié le 7 févr. 2019 à 08:24
Bonjour,
A priori pas besoin de barre de progresssion
une facon de faire:
A priori pas besoin de barre de progresssion
une facon de faire:
Sub test() Dim Flg_Lock As Boolean If Cells(6, 3).Value <> Cells(7, 3).Value Then 'quelle feuille ??? Application.ScreenUpdating = False 'stop rafraichissement feuille en cours With Sheets("Planning") .Unprotect Password:="date" For i = 6 To 371 If .Cells(6, i).Value < .Cells(6, 3).Value Then Flg_Lock = True Else Flg_Lock = False End If .Range(Cells(8, i), Cells(16, i)).Locked = Flg_Lock .Range(Cells(18, i), Cells(33, i)).Locked = Flg_Lock .Range(Cells(35, i), Cells(44, i)).Locked = Flg_Lock .Range(Cells(46, i), Cells(61, i)).Locked = Flg_Lock .Range(Cells(63, i), Cells(70, i)).Locked = Flg_Lock .Range(Cells(72, i), Cells(78, i)).Locked = Flg_Lock .Range(Cells(80, i), Cells(99, i)).Locked = Flg_Lock .Range(Cells(101, i), Cells(103, i)).Locked = Flg_Lock Next i .Range("C6").Copy .Range("C7").PasteSpecial Paste:=xlPasteValues .Protect "date" End With MsgBox "Opreration terminee!!!!!!!" End If Application.ScreenUpdating = True End Sub
7 févr. 2019 à 08:26
Cela répond exactement à ma demande,
Bonne journée