I need to create something similar to the following table where I have the month and identify how many were created and approved in order to create a ticket resolved ratio.
I’ve built an example which works for my data, and may use more calculated fields than needed, but it explains the process.
I created 2 calculated fields that truncate the created_date and resolved_date fields to Month level: truncCreatedDateMM truncDate('MM',{created_date})
Then I created 2 calculated fields that count the number of resolved tickets for this month and following months: thisMonth ifelse(truncCreatedDateMM=truncResolvedDateMM,1,0)