Hello,
I need a line chart showing created/open/resolved cases count every day.
For x axis, I used GENERATE_RANGE function to generate DATE values as below.
GENERATE_RANGE ( '1D' , TO_DATE ('2024-01-01', FORMAT('%Y-%m-%d')), TODAY())
For y axis(KPI), I use:
COUNT_TABLE ( "casetable" )
However, the problem is there's no common table between this generated temporary table with the case table or activity table, so the case counts cannot be calculated based on this temporary table.
Does anyone know a good way to create that analysis, ideally only in frontend and not change the data model?