I am building an approval flow where it will need to pass through up to 6 departmental approvers. I've added a People picker column type in the list to specify who each department approver is. However, there will be situations where a department is not required to approve and therefore, their Start and Wait for approval step needs to be skipped.
I'm not sure how to build the condition step to recognize when the Approver column is empty. Here's what I've tried thus far:
Empty function:
fx empty(triggerBody()?['Approvers']) is equal to fx true
Using Null:
Using String: fx string('')
Leaving the value field blank:
Are there any other suggestions I can try?