Forum Discussion
wallingfordce
01-11-2022Data Pipeline
Something like this maybe? For each ID on that launch_date, if last_seen is before or same as launch_date then include the ID in a unique count.
COUNT ( [ID] ,
IF (
MIN ( DDIFF ( [Days in last_seen] , [Days in launch_date] ) ) <= 0
, [Max ID]
, NULL
)
)
TomerA
01-12-2022Cloud Apps
My issue is actually different then I mistakenly described. Created a new post.
https://community.sisense.com/t5/build-analytics/how-to-create-a-table-with-a-range-of-dates/m-p/1856#M227