Access formula

I have this access formula on a controlled section. I’m trying to show the user’s name instead of the field name.

Can anyone tell me how to do that? Thanks!

@If(Approval = “Yes” | Approval = “No”; @Name([Canonicalize];“Mgr”): @Name([Canonicalize];“MgrBackup”); Author)

Subject: access formula

Too many quotation marks. Instead of this, for example:

@Name([Canonicalize];“Mgr”)

…do this:

@Name([Canonicalize]; Mgr)

At the moment, your formula is working on the strings “Mgr” and “MgrBackup”, not the contents of those fields.

Subject: access formula

Take the quotes off of the field names in the @Name() statements.