Hi everyone. I’m trying to do a calculated field that counts the number of view IDs, if they were viewed in the last 90 days.
Here’s what I entered and keep getting errors on. Any help is appreciated. Thanks!
count(
ifelse(
dateDiff({View Created At},'now()') <=90,{View UUID} 0)
{View UUID},
NULL
)
)