Bonjour le fofo
voilà j'ai un petit soucis avec ce code :
Lorsque j'effectue la macro la feuille dans laquelle Range("main_informations") se trouve s'affiche à l'écran alors que je souhaiterai qu'elle reste invisible sur l'écran.
Merci du coup de main
voilà j'ai un petit soucis avec ce code :
Code:
Private Sub CheckBox22_AfterUpdate()
Application.ScreenUpdating = False
Dim myRange8 As Range
Sheets("Main Informations").Select
If Sheets("Formules").Range("Q2") = True Then
Set myRange8 = Range("main_informations").Find(Sheets("Formules").Range("V1"), , xlValues, xlWhole).Offset(0, 43)
myRange8.Select
ActiveCell = "X"
Else
Set myRange8 = Range("main_informations").Find(Sheets("Formules").Range("V1"), , xlValues, xlWhole).Offset(0, 43)
myRange8.Select
ActiveCell.ClearContents
End If
Application.ScreenUpdating = True
End Sub
Lorsque j'effectue la macro la feuille dans laquelle Range("main_informations") se trouve s'affiche à l'écran alors que je souhaiterai qu'elle reste invisible sur l'écran.
Merci du coup de main