Hi All ,
I want to remove the rows based on the joining date column in the excel file . Requirement is , IF joining date is greater than current month but same year then the rows should remove from the file and also IF joining date is greater than current year this rows also should remove .
For eg : If we have Joining date = 28/01/2025 and 12/09/2026 , then both the rows should remove.
but getting the below error when saving the flow .. also running long time for just 7k rows in the data source (Sample data). but original data would be more than 300k :(
How to overcome this error and performance for large datasets ?
or(
int(formatDateTime(items('Applytoeach')?['Joining Date'], 'yyyy')) > int(formatDateTime(utcNow(), 'yyyy')),
and(
int(formatDateTime(items('Applytoeach')?['Joining Date'], 'yyyy')) = int(formatDateTime(utcNow(), 'yyyy')),
int(formatDateTime(items('Applytoeach')?['Joining Date'], 'MM')) > int(formatDateTime(utcNow(), 'MM'))
)
)