I haven't found any luck searching but I am looking for how to set up an Explore query to show me the number of tickets solved the same day they were created. Any guidance on how to set this up?
Tickets Solved Same Day They Were Created
Login to the community
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Following Jacob's brilliant formula, you will return only tickets that were solved and created the same day.
In your query, to keep only the tickets that were created/solved the same day, you'll have to remove from your metric filter the 0 and blank values.
To this query, you can then add the metric "First resolution time" which is available in minutes/hour/days, as mentioned in this article: Metrics and attributes for Zendesk Support, and then change the aggregator of the metric to AVG, as explained in this documentation: Choosing metric aggregators
If you keep the level of details Jacob's showed in his example, you'll get the average first resolution time for each day.
Now if you don't want this level of details, and only want to know the AVG resolution time for all your tickets that were created and solved the same day, you'll need to do the following:
1) Create an attribute that will return 1 when a ticket was created/solved the same day.
The formula would be the following one:
IF ([Ticket status - Unsorted] = "Solved"
OR [Ticket status - Unsorted] = "Closed")
AND ([Ticket created - Date] = [Ticket solved - Date])
THEN 1
ENDIF
2) Add this attribute to your filters and select only 1 as a value.
You should then have something like this.
Hope that helps! :)