I am using SharePoint 2013 On Site. I have created a Nintex form with several panels for approval by different SharePoint Group members. I want to disable the panels if the status is not set to Ready for Voting and users are not a member of the IA group, for example. I created a rule on the form,
and(fn-Not(contains(Status,"Ready for Voting")), fn-Not(fn-IsMemberOfGroup(CCBIAApprovers)))
but the two conditions don''t work together. I have tried several options. I also created a form variable to hold the results of
fn-Not(fn-IsMemberOfGroup(CCBIAApprovers)
but I don't have a type for boolean and it is not working either.
and(not(contains(Status,"Ready for Voting")), memberOfIAGroup != true)
Are there any suggestions or other routes I can take?
