Bonjour j'ai ce code qui ouvre d'un clic un USF en colonne E si la cellule et remplie j'aurai voulu la même chose mais pour les cellules vide
Merci
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Range("E4:E1000")) Is Nothing Then
If Application.ActiveWindow.ActiveCell.Formula <> "" Then
UserForm1.Show
End If
End If
End Sub
Merci
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Range("E4:E1000")) Is Nothing Then
If Application.ActiveWindow.ActiveCell.Formula <> "" Then
UserForm1.Show
End If
End If
End Sub