I have an excel table of 24 qualifications. I have a flow that I want to email me once a week when someone's qual date is 30 days from expiration. In the excel Table, Names are in column A and then each Qualification has two columns Date Qualified and a QualNameExpDate. This works for the first 4 qualifications I have. Then it skips the next 5 and will work with the tenth one but none of the other ones. I have tried writing individual flows for each qualification but the ones that don't work in the main flow won't work in a standalone flow either. I have converted to range and reconverted to a table to ensure I'm using up to date table.
recurrence,--Set to once a week
initialize a string variable,--- Use this to track the names and qualifications that are due
Initialize and set a variable for today + 30 days, --- This is used in the if statement
Call List Rows Present --Select my file and correct table
,For Each Loop-- To loop through the body of the table
Condition if [QualNameExpDate is less than or equal to today + 30 ],---
TRUE -- Append String Variable Name, Qualification,--False Blank---
Outside the loop Email myself with the String Variable as the body of my text.