Hello All,
I have a report based on a stored procedure that returns records of tasks that were completed the previous week. It’s run on Mondays and returns those tasks where the ‘completed_dt’ field has a date in the previous week.
Each task has a ‘created_dt’ as well. I want to be able to count the number of new tasks within this record set.
I’m using the following formula but get an error message the says ‘This field can not be summed’
Can anyone help me with this?
Thanks for any/all suggestions!
- TM
I have a report based on a stored procedure that returns records of tasks that were completed the previous week. It’s run on Mondays and returns those tasks where the ‘completed_dt’ field has a date in the previous week.
Code:
WHERE completed_dt BETWEEN
DATEADD("dd",-7, GETDATE()) AND DATEADD("dd",-2, GETDATE())
Each task has a ‘created_dt’ as well. I want to be able to count the number of new tasks within this record set.
I’m using the following formula but get an error message the says ‘This field can not be summed’
Code:
If {sp_created_dt} >= Minimum({sp_completed_dt}) And
{sp_created_dt} <= Maximum({sp_completed_dt}) Then 1 Else 0
Can anyone help me with this?
Thanks for any/all suggestions!
- TM