Cases Report

Hi, 

I am trying to create a report that shows percentage of cases closed with 30 days (month-wise). 

For now i created a customer integer field that calculates the number of days between case created and case closed but can i generate the above report?

Any help would be greatly apreciated

Parents Reply
  • I get the error when I am while saving the formula after making the field time_to_close calculated.

    ifElse(
    isInList(
    $status,
    createList(
    "Closed"
    )
    ),
    ifElse(
    not(
    greaterThan(
    $time_to_resolution_c,
    30
    )
    ),
    "30 Days or Less",
    ifElse(
    not(
    greaterThan(
    $time_to_resolution_c,
    60
    )
    ),
    "31 to 60 Days",
    "Greater Than 60 Days"
    )
    )
    )

    I copy pasted your formula exactly te only thing I changed was the field name days_to_resolution to match the field name I had created which is time_to_resolution (I know i previously said days_to_resolution but that was the display label 

Children
No Data