Hello,
I'm working on a report that needs to display the total number of users in our database, grouped by month. The goal is to show a cumulative count of users over time.
For example, if we have a total of 100 users:
Is there an alternative approach or workaround to achieve this result?
Any help or suggestions would be greatly appreciated.
Thank you.
I'm working on a report that needs to display the total number of users in our database, grouped by month. The goal is to show a cumulative count of users over time.
For example, if we have a total of 100 users:
- 50 were created in January
- 30 in February
- 20 in March
- January: 50 users
- February: 80 users (50 + 30)
- March: 100 users (80 + 20)
Is there an alternative approach or workaround to achieve this result?
Any help or suggestions would be greatly appreciated.
Thank you.