Michael DeWulf
01/10/2025, 5:18 PMMichael Ullock
01/10/2025, 7:09 PMSELECT IFNULL(Cost(Fact), 0)*1
In some cases, the *1 forces 0 to appear even when there is no data. can you please try and give this a go and see if this helps in this case?Michael DeWulf
01/10/2025, 7:53 PMSELECT RUNSUM(
SELECT IFNULL({fact/ad_platform_metrics.cost}, 0) * 1
for EACH {label/timestamp.day})
ROWS BETWEEN 31 PRECEDING AND 1 PRECEDING
WITH PF EXCEPT {label/timestamp.day}
This? This didn't work.Michael Ullock
01/10/2025, 8:01 PMMichael DeWulf
01/10/2025, 8:03 PMfor each
otherwise?Michael Ullock
01/10/2025, 8:07 PMMichael DeWulf
01/11/2025, 2:46 AMJoseph Heun
01/14/2025, 9:26 AM