Hi again!
I can see two approaches:
1.- If you handle Start Time on your excel column selecting its format as Date instead of text. THis way, 'List rows present in a table' will provide some funny numbers (days since Days Since 1899–12–30) as explaind in previous posts.
In order to compare them with today, I would use the following WDL expression on the right side of you condition rule:
string(div(sub(ticks(utcNow()),ticks('1899/12/30')),864000000000))
2.- If you handle Start Time on your excel column with Text format, you definitly need to store it as yyyyMMdd in order to compare it properly with your today
Hope this helps