my issue is like even though current time is at 7 AM , but trend is showing at other time that’s why trend is flat , how to avoid it.
Current Formula is runningSum(sumOver(sum(ifelse(truncDate(“DD”, now()) = truncDate(“DD”, createdAt) AND
{Convert Time} <= extract(‘HH’, now()), status, NULL)), [{Convert Time}]), [{Convert Time} ASC], )
Last 7 days average cumulative is runningSum(
avg(sumOver(
ifelse(
truncDate(‘DD’, createdAt) >= addDateTime(-7, ‘DD’, truncDate(‘DD’, now())) AND
truncDate(‘DD’, createdAt) <= addDateTime(-1, ‘DD’, truncDate(‘DD’, now())),
status,
NULL
),
[{Convert Time}],
PRE_AGG
)
/ 7),
[{Convert Time} ASC]
)
@Nico , could you please check it ? even I’ve changed correct time zone , graph line showing like first photo , second photo is from another example not from cumulative
Since we have not heard back from you, I’ll go ahead and close/archive this topic. However, if you have any additional questions, feel free to create a new topic in the community and link this discussion for relevant information.