Start a conversation

Creating a Report that shows all tickets that got a post on a specific day

Overview

A customer may require a report that displays the activity their team has done on tickets on a specific day i.e. tickets that received a post on a specific day.

Solution

The KQL query below will generate a report of all tickets that have received a post today:

SELECT
'Tickets.Ticket ID', 'Tickets.Creation Date' , 'Tickets.Subject','Tickets.Type','Tickets.Status', 'Ticket Posts.Full Name' as 'Staff'
FROM
'Ticket Posts'
WHERE
'Ticket Posts.Creation Date' =Today() AND 'Ticket Posts.Creator' = 'Staff'

The 'Ticket Posts.Creation Date' filter can be customized accordingly to specify a given date.

Testing

Run the KQL query in Kayako Reports. You should see an output similar to the following:

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments