So I have documents that have a total duration in H:MM:SS and I need to remove any rows that are under 10-12 minutes(depending on the course.)
Hi @rmartori ,
You need to convert the time into minutes using a simple formula:
DateTimeHour([Duration]) * 60 + DateTimeMinutes([Duration])
This gives you the amount of time in minutes.
Then you simply filter.
I've attached the workflow for you.
M.
...oops! It's working now.
@rmartori Add a Datetime Tool in case the comng data is a string.