Controlled Access Section - Restrict Edit from Author when re-opened

I have a Controlled Access Section with the formula that stops users from editing fields within the section, but are still able to edit other parts of the document.

@If(Author=@Name([CN];@UserName);“”;“NO ACCESS”)

This is working fine, but I would like to stop the Author of the document being able to edit the fields in the section once it is no-longer a NewDoc.

Is this possible and if so how?

Regards,

Marion

Subject: Answered in previous post

You can use this formula in the situation you described that you are coding in.

@If(RequestorsName=@V3UserName & @IsNewDoc;“”;“NO ACCESS”)

Subject: Thanks Dave it worked.