Hello All,
I’m trying to work out a way that I can count certain records twice.
What I’m trying to do in the formula below is this:
I have a weekly report where I need to count the number of records that have been completed in the current year and the number of ‘new’ requests during the past week.
The problem is that some of the ‘completed’ records can also ‘new’ records (created & completed in the same week) and thus my sums are off (the ‘new’ record total are deducted from the corresponding ‘completed’ record total).
Does anyone have guidance on how to do this?
Thanks for any/all help with this!!!
-tm
I’m trying to work out a way that I can count certain records twice.
What I’m trying to do in the formula below is this:
Code:
If {table.created_date} in {@StartDate} to {@EndDate} Then "New" Else
If {table.completed_date} IN YearToDate Then "Completed YTD"
I have a weekly report where I need to count the number of records that have been completed in the current year and the number of ‘new’ requests during the past week.
The problem is that some of the ‘completed’ records can also ‘new’ records (created & completed in the same week) and thus my sums are off (the ‘new’ record total are deducted from the corresponding ‘completed’ record total).
Does anyone have guidance on how to do this?
Thanks for any/all help with this!!!
-tm