I am looking for a function to display the growth of unique users., in a line graph.
For example:
Dimension is: ROUND_DAY("_CEL_O2C_ACTIVITIES"."EVENTTIME")
KPI: COUNT(DISTINCT
CASE WHEN "_CEL_O2C_ACTIVITIES"."USER_TYPE" = 'A'
THEN "_CEL_O2C_ACTIVITIES"."USER_NAME" END)
This gives me a number of unique users who performed an activity on that day.
Now I want to for each next day, take the unique users of the day before and add any new unique users for the current day. I was thinking of using MOVING_COUNT and DOMAIN_TABLE but cannot get the query working. Not sure if it even can be done