I am looking for a functionality similar to SQL LEFT JOIN in Amazon Quicksight using functions and filters.
I have a table with userID and LoginTime. Trying to calculate users who logged in for the first time for this month. ie Users for this month MINUS/LEFT JOIN users for previous months
Something along the lines of
not contains(logins, unique(logins between dateTrunc('YYYY', dateAdd('YYYY', -5, now())) and dateTrunc('MM', dateAdd('MM', -1, now()))))