Hi,
First thank you for such clear details and a flow picture, I love you for that, no sarcasm intended.
However, I must warn you, that asking a Flow to generate you a sequenced number will fail at some point. Multiple people will hit at the same time,
and the flow will get the count and then both will end up with the same number, it's going to happen, especially as your customers/users whatever grows.
If anything, assuming I am clear what you need, you can set the Triggers (under settings), Concurrency ON and set to 1. Then its only 1 at a time.
Then it should be fine, unless you have loads of volume of uses and then they will be grrrr'd lol to have to wait.
So, is your Column a Date or a DateTime as that makes a big difference?
So what we need to do is make sure that we have a formatted Date that matches what yours is.
So for instance.
If you have dd-MM-yyyy in the List, then we need to match that. To do that, use the following expression
Expression: formatDateTime(utcNow(), 'dd-MM-yyyy')
Then in your get items
[Date Received] eq ' formatDateTime(utcNow(), 'dd-MM-yyyy')'
Please let me know if you have any issues.