Crystal 2008
I am trying to build a report which groups emails resolved
in <=8hr, <= 12hr and <=24hr.
I had this working until with this fromula: Datediff
datediff('n', ({KC_MESSAGEHISTORY.ACTIONDATE}), {KC_MESSAGE.COMPLETEDATE})
Then I created 3 formulas
Resp<=8 : If {@DateDiff} <= 480 then 1 else 0
Resp<=12 : If {@datediff} <= 720 then 1 else 0
Resp<=24 : If {@DateDiff} <= 1440 then 1 else 0
I summed these up using a RT and things worked fine.
I then discovered that email may have more then one action_date.
So now I need to take the MINIMUM(action_date)
Now I get an error that says a RT can't refer to a print time formula. Any suggestions on how I can get around this?
I am trying to build a report which groups emails resolved
in <=8hr, <= 12hr and <=24hr.
I had this working until with this fromula: Datediff
datediff('n', ({KC_MESSAGEHISTORY.ACTIONDATE}), {KC_MESSAGE.COMPLETEDATE})
Then I created 3 formulas
Resp<=8 : If {@DateDiff} <= 480 then 1 else 0
Resp<=12 : If {@datediff} <= 720 then 1 else 0
Resp<=24 : If {@DateDiff} <= 1440 then 1 else 0
I summed these up using a RT and things worked fine.
I then discovered that email may have more then one action_date.
So now I need to take the MINIMUM(action_date)
Now I get an error that says a RT can't refer to a print time formula. Any suggestions on how I can get around this?