Function: Yesterday
Yesterday returns the a date/time value representing the start of the previous day.
Syntax
Code Block | ||
---|---|---|
| ||
Yesterday() |
Example
A query to return all requirements and scripts created in the last day, that were not created by the current user.
Code Block | ||
---|---|---|
| ||
EntityType IN [Requirement,Script] AND CreatedAt >= Yesterday() AND CreatedBY != Me() |