Hello everyone, i’m doing a visual that look kinda like this:
Simply listing every date of current month, value of each day and cumulative value. I’m calculation cumulative value using below calculated field:
runningSum(sum({value}),[truncDate("DD",{date}) ASC])
However, as you can see, even tho the value is NULL (because they’re future date, they won’t have value), cumulative value still return the same last value. I want cumulative value also return NULL if value is NULL. Is it possible to achieve this?