I have a list to contain people like
field is single line(contain 1 value) and some fields can be empty, how can I check that how many people was contain in 1 record then save them to array?
Thanks.

I have a list to contain people like
field is single line(contain 1 value) and some fields can be empty, how can I check that how many people was contain in 1 record then save them to array?
Thanks.
Hi @LazyLazy,
You could initialize an integer variable to count the number of approver field not empty, steps as below:
1. Initialize an integer variable set to 0 and name it to Count;
2. Create condition action determine approver1 if has a value;
3. use the empty() function:
empty(outputs('Get_item')?['body/Approver1'])
4. If true, increase the Count variable by 1;
5. Repeat Step 1-4 to check Approver 2- 6.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.