IanWaterman
Programmer
I have 4 formula which work as required for a proscribed date range.
@Brought Forward
If {calldetails.daccepted} < minimum(Monthtodate) and {calldetails.dcleared} >= minimum(Monthtodate) then 1 else 0
@opened
If {calldetails.daccepted} in Monthtodate then 1 else 0
@Cleared
If {calldetails.dcleared} in Monthtodate then 1 else 0
@Carried Forward
If {calldetails.dcleared} = date(1900,01,01) or {calldetails.dcleared} > maximum(Monthtodate) then 1 else 0
Client now wants this to run over a 12 month period and perform these calculations automatically for each month.
Other than hard coding formula for each month I can not think how I would do this, ie 48 formulae. Results need to be charted at end of report.
Any suggestions
Ian
@Brought Forward
If {calldetails.daccepted} < minimum(Monthtodate) and {calldetails.dcleared} >= minimum(Monthtodate) then 1 else 0
@opened
If {calldetails.daccepted} in Monthtodate then 1 else 0
@Cleared
If {calldetails.dcleared} in Monthtodate then 1 else 0
@Carried Forward
If {calldetails.dcleared} = date(1900,01,01) or {calldetails.dcleared} > maximum(Monthtodate) then 1 else 0
Client now wants this to run over a 12 month period and perform these calculations automatically for each month.
Other than hard coding formula for each month I can not think how I would do this, ie 48 formulae. Results need to be charted at end of report.
Any suggestions
Ian