COUNT examples
- Last UpdatedFeb 07, 2025
- 1 minute read
Example 1
The following expression returns the number of times a temperature exceeded a threshold each hour.
COUNT( R21.Temp > 140.0, 1 hour )
Example 2
The following expression returns the total number of recipe steps processed.
COUNT( R22.Step )
Example 3
The following expression returns the number of times a pump is started each day.
COUNT( Pump13.Status = 1, 1 day )