Just want to check my understanding. I’m triggering a workflow based on counting how many things are in a list. My first conditional took the form
When: List of data type/field (another data type)/count=1
Concrete example:
When: List of users/driving licence/count=1
I expected this conditional to count the number of driving licences in the list of users but it didn’t it counted the number of driving licence fields (which is the same as the number of users), or more specifically it counted “driving licences” whether the field was empty or not.
What worked was
When: List of data type/field (another data type)/is not empty/count=1
Is this as it should be?