Hi,
This can be done by setting up a rule triggering on “Compare logged in user with people picker field” and have this rule call a the function “goToEditForm” in the “Run these functions / trigger these rules”. Then add this to the Custom JS”:
function goToEditForm(){
location.href = location.href.replace("DispForm.aspx","EditForm.aspx");
}
Let me know how this works out.
Alexander