Hi Domo geniuses,
I have a dataset with a timestamp 'Start' field that tells me the date and time that a user session began. There's another column for User Session ID, which has its own unique ID. I want to count the number of distinct user sessions in the first year but Domo is having difficulty processing the data. The formula validates but I get this error message:
Here's my Beast Mode:
Case When start
>= MIN(DATE(Start
))AND Start
< DATE_ADD(Min(DATE(Start
)),INTERVAL 1 Year) THEN COUNT(DISTINCT Session ID
) ELSE 0 END