Hi. I want a user to select a a role in a "Roles Requested" dropdown. If that role contains the word "Contractor," roles that don't have the word "Contractor" should not be available for selection. I'm using this filter here:
filter(rule!UAF_Contractor_Test, cons!UAF_ROLES_FL)}, but it isn't working. Here's the code for my rule: find("Contractor", ri!rolesRequestedList)>0
Help is appreciated. Thanks
Discussion posts and replies are publicly visible
Looks like your rule is checking if "Contractor" exists but isn't filtering correctly. A Mortgage Fraud Lawyer might suggest using contains() instead of find() to properly filter roles in the dropdown.
contains()
find()