Forum Discussion
hlorosc
01-11-2022Cloud Apps
Another way (if I'm understanding correctly) would be to add a "helper column" at the data model level
Custom column would be:
CASE WHEN DATE_TRUNC(last_seen, DAY) >= DATE_TRUNC(launch_time) THEN 1
ELSE 0
END
Then you can filter your unique count by that field (and only include those with a value of 1)