If we have three yes/no fields, how can we efficiently create a workflow to update another field: “#count” with how many are “true/yes”? This app does have access to bubble’s API if this is better created there.
Example:
3 = (yes, yes yes)
2 = (no, yes, yes); (yes, no, yes); (yes, yes, no)
1 = (yes, no, no); (no, yes, no); (no, no, yes)
0 = (no, no, no)
The count will be automatically done this way. You are converting yes to 1 and no to 0. So using + between each of them will give you the expected result.