A
akyhne
I have a sheet with some cells that calls some macros with (Example):
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Name.Name = ("A1") Then
<something>
End Sub
I allso have some Macros that changes the value on ("A1")
When theese Macros want to change cell A1 the worksheet.change should be
ignored or the Code should look something like this:
If Target.Name.Name = ("A1") And Worksheet.Onkey = True Then
<something>
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Name.Name = ("A1") Then
<something>
End Sub
I allso have some Macros that changes the value on ("A1")
When theese Macros want to change cell A1 the worksheet.change should be
ignored or the Code should look something like this:
If Target.Name.Name = ("A1") And Worksheet.Onkey = True Then
<something>
End Sub