I have attachments in Nintex form and save button which saves data. When save and submit is clicked, it triggers a workflow.
Following rule makes the save button hidden for all. But it should be available for admin users.
not(or(equals(Status,"Draft"),equals(Status,"Rejected")))
How do I achieve this?
Create a group for Admin users use the below formatting rule .
fn-IsMemberOfGroup([YOUR GROUP NAME])
fn-IsMemberOfGroup is only available under expression. It is not available in the formatting rules. I need to use this function along with the rules already added. Is this possible? Thanks