Page 1 of 1

Can a specific user name be included in a 'User-Defined Rule?

Posted: 01 Oct 2014
by Merley72
Hi,

I'm wanting to see if the name of a specific user (John Doe for example), can be included in a Group Editor option when I select that to have a User-Defined Rule instead of a SharePoint Group? I'd like to also check if a particular status has been applied to document as well (for example - Validate) at the same time.

Checking the Validate status is easy ( [Status] == 'Validate' ), but getting the current user's name ( ContainsCurrentUser ) to be able to match a user name seems complicated. I've used all manner of variants but think it might be down to the way SharePoint sees users. Am I missing something here? Should I do it a different way? Can anyone guide me in this procewss please.

Thanks in advance. Alan C

Re: Can a specific user name be included in a 'User-Defined Rule?

Posted: 02 Oct 2014
by Dmitry Kozlov
Hi Alan,

Please, try the following formula:

[Status] == 'Validate' && CurrentUserName == 'John Doe'

You can also check the current user by login:

[Status] == 'Validate' && CurrentUserLogin == 'DOMAIN\login'

Re: Can a specific user name be included in a 'User-Defined Rule?

Posted: 02 Oct 2014
by Merley72
Hi Dmitry

Thanks for that it works perfectly. Next time I promise to read all of the help text before I ask this kind of question!

Regards

Alan C.