Right now I have a transaction table that contains transactions. I want to know by month, how many people in each month have at least 1 transaction.
Doesn't seem possible in RJ. For example, when I setup the metric I get:
This metric performs a
column in the transaction table (Change) ordered by the
If I then create this metric and plot it by month. I am only actually getting users that created a transaction for the first time in the months. Any user that had a transaction each month isn't counted again and again.
Doing a count of all rows, and trying to GROUP BY user_id also fails.
How do I fix this?