Actually using the following code is impossible, because we are doing a change in Worksheet_Change
Private Sub Worksheet_Change(ByVal Target As Range) Target.Value = "test" End Sub
It will make an unlimited loop in the event
I must change the target only in this event
Do you have a solution to resolve this problem?
Worksheet_Change, I recommend that you see THIS post.