0
Good evening, I am preparing a VBA record sheet and I would like it, when selecting a specific cell, to be filled with an X and delete the other possible alternatives ...
If possible, I would like to delete some lines if selection is made
I tried the following formula, but without success:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = True
If Range(“U23”).Select Then
Range(“U23”) = "(X)"
Range(“Z23”) = "( )"
Range(“AE23”) = "( )"
End If
End Sub