Count users per month in a dashboard

Hi guys,

I would like to ask you a question. How could I calculate the number of registered users per month if I have the registration timestamp available?

I have this Dashboard table to manage everything and the timestamp in the Users table:

Thanks :slight_smile:

My suggestion:

  • In each of the two tables, create a math column that converts the Dates (Month of the Year and Registered Timestamp) to integers in YYYYMM format. Use the following formula:
Year(Date)*10^2
+Month(Date)
  • In your Dashboard table, create a multiple relation column that matches the integer date column with the same column in your Users table
  • Do a rollup->count through that relation
1 Like

Much easy than I expected!

Thank you Darren for the help!!! :slight_smile:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.