Timespan variable

Hi, I am currently working on a project that uses the timestamp variable.

In a do while activity, i want to set the condition to check that the timespan variable is less than 30 seconds.

TimeSpan < 00:00:30.00
in the condition field gets Compiler error encountered processign expression "timeTaken < 00:00:30.00". End of expression expected.

Any idea the right way to check that the timespan is less than 30seconds?

Thank you.

2 Likes

Hi @tzj ,

Timetaken.TotalSeconds<30

Regards,
Arivu

6 Likes

thanks arivu!