Count number of inputs per day

Hi,

I want to create a query that returns number of user inputs per day but I can’t find how to do this.

Hi Daniel,

If you want to count all user inputs including empty ones, you just need to query a daily distribution of transactions using the following TQL query:

d date: catd(model="date") t.time as date order by date

If you want to exclude empty inputs, you need to add one restriction t.e.userInput!=“”:

d date: t.e.userInput!="", catd(model="date") t.time as date order by date

You can find more useful queries in the TQL cookbook.

Chunlin