Hi guys.
The concept of my flow is very simple. It should take the rows with today approval date in my working Excel file and add rows in my main Excel file. (Assuming today is 6 Sep, so only company 456 should be filtered out)
The table in my working Excel file looks something like this.
| CompanyName | ApprovalDate | ExpiryDate | ApplicationStatus | Update |
| 123 | | | Returned | 1900-01-01 |
| 456 | 6-Sep-23 | 5-Sep-24 | Approved | 2023-09-07 |
| 789 | 24-Jul-23 | 23-Jul-24 | Approved | 2023-07-25 |
| 011 | 1-Jan-22 | 31-Dec-23 | Approved | 2022-01-02 |
I tried various method and decided to add a new column (Update) to be in the same format as Power Automate, hoping to make it easier. The formula I am using for the column is =DATE(YEAR(ApprovalDate),MONTH(ApprovalDate),DAY(ApprovalDate))+1
I know I am doing something wrong with the date, but I cannot proceed further. This is how my flow looks like.

When I run the flow, I am getting all the approved rows instead of just company 456. By right if the first filter array is working, I wouldn't even need the second filter array.
Help please? What should I do to rectify this?