I inherited a Nintex form that has a lot of different validations based on different conditions.
None of the fields in the SharePoint list are set to required but the data cards are set to required.
When I run my patch, it still patches to SharePoint even though I have empty required fields.
With that being said I am looking at putting all of the conditions in a button that will either be visible or not if the conditions are not met before it navigates to the popup patch button.
So here is my first condition I have a rich text box that can't be empty when a yes/no choice is set to "Yes"
Here is the logic and its not working as I had hoped.
If(
Len(RichTextEditor1.HtmlText = 0) && (DataCardValue36.Value = false),
false,
true
) || If(
Len(RichTextEditor1.HtmlText = 0) && (DataCardValue36.Value = true),
false,
true
)
I am sure its my inexperience in writing this that's causing my headache.