My custom SP2013 list has a people/group column Submitter. In the list form, I have a repeating section control. In the repeating section Control Settings, I am trying to configure an Expression in the Prevent add/delete in new/edit mode field that disables the add row link when the current user is NOT the Submitter.
I've tried:
- fn-IsCurrentUser(Current User,Submitter)
- fn-Not(fn-IsCurrentUser(Current User,Submitter))
- fn-If(fn-IsCurrentUser(Current User,Submitter),"Yes","No")
- fn-If(fn-IsCurrentUser(Current User,Submitter),1,0)
but none of these work. You help is greatly appreciated.