I've created a report over 2 tables, REQUEST and TASK. There can be many TASKS for each REQUEST. I've added a formula field into my report to indicate whether a REQUEST was completed in a single TASK.
@RequestFirstTime
if Count ({TASK.TASK_ID},{REQUEST.REQUEST_ID} ) = 1 then 1 else 0
I want to add a Total Requests finished First Time value to my Report. I've tried the following:
@TotalRequestFirstTime
sum({@RequestFirstTime})
Unfortunately this doesn't work, I think it's because of the combination of SUM and COUNT in the 2 formulas.
Any ideas?
@RequestFirstTime
if Count ({TASK.TASK_ID},{REQUEST.REQUEST_ID} ) = 1 then 1 else 0
I want to add a Total Requests finished First Time value to my Report. I've tried the following:
@TotalRequestFirstTime
sum({@RequestFirstTime})
Unfortunately this doesn't work, I think it's because of the combination of SUM and COUNT in the 2 formulas.
Any ideas?