Hide when issue

I have 4 fields in a document, each representing a name (issuer, supervisor, manager and additional copy). The name in the additional copy field may or may not be filled in.Then there’s a field with the name of an other person (field = INjurpers).Latter field may only be shown in the document to the names in the 4 fields and must be hidden to all others persons viewing the document.

I work with this instruction in the "hide paragraph when " window:

(INIssuer!=“”&@Name([Abbreviate];@UserName)!=INIssuer)

Unfortunately, I only manage to have the field INjurpers hidden for just 1 of the 4 persons. What do I have to append to this instruction for the supervisor, manager and eventual additional copy to be hidden if not viewed by themselves?

Subject: Hide when issue

you can use the following Hide when

(INIssuer!=“”&@isNotMember(@Name;[Abbreviate];@UserName); INIssuer))

This should work

Subject: RE: Hide when issue

Many thanks, … it works perfect!