Scheduled WorkFlow Backend Concept

When scheduling a flow, passing a list of users, it takes the current registration number of users at the time of execution of the scheduled flow.

Is there any way for it to get the user list at flow execution time? Because the flow will start and it will reschedule for each new day.

You don’t need to pass the list of users during the scheduling process.
You can get this list during the backend workflow, using the same constraints you used during the scheduling process.

Yes… just do the search for Users at the time the workflow runs (instead of when you schedule it) - meaning set the user list on the backend workflow rather than on the workflow that schedules it.

Depending on exactly what you’re trying to do you might be able to do that in a single backend workflow, or you might need an additional backend workflow to to set the user list and schedule the other one.