When using an onchange event on some worksheet, I wish to change the Target cell's value inside the onchange script.
I haven't found a way to do this. I've tried:
Target = "some value"
Range(Target.Address) = "some value"
Target.Value = "some value"
But to no avail.
I'm aware that this may trigger again the onchange event, but the script is prepared for that. And in case it is not supposed to be triggered, I may use
Application.EnableEvents = False
before any update and
Application.EnableEvents = True
when done...
Any ideas?