Reporting on conditional fields

1 Comments

  • Chris Curlett

    Unfortunately Zendesk just not have a good solution for multi-level ticket categorization. I have a system just like yours where I made a ton of category fields and used form conditions to branch down the hierarchy. It's kind of a pain but I'm hoping that the new custom objects helps with this. Do you have a good system for tagging your drop down field options? I ended up making custom metrics in Explore that looks something like this:

    IF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_accidental_damage") THEN "Accidental Damage"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_buttons_not_working") THEN "Button(s) not working"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_conference_room_issue") THEN "Conference Room Issue"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_connectivity") THEN "Connectivity"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_digital_signage") THEN "Digital Signage"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_hardware_defect") THEN "Hardware Defect"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_lost_/_stolen") THEN "Lost / Stolen"

    ELIF INCLUDES_ALL([Ticket tags], "it_inc_sym_hardware_no_power") THEN "No Power"

    ENDIF

     

    Mine is much longer than that, but you get the idea. Of course, we're constantly adding options to the drop downs, so I need to update my custom metrics accordingly. I have a little system down where I export all of the fields' CSV, I combine them into one spreadsheet, then I use a little formula that uses the field value and option for each line into what you see above, then copy and paste all the way down and add ENDIF at the end. Hope this helps. 


    0

Please sign in to leave a comment.

Powered by Zendesk