How to add timestamp when user signed up?

Hi Team :wave:

Sorry this may seem super basic but there’s no default timestamp when user signed up in the User table. :sweat_smile:

Is there a way to do this?

Thanks,
Joey

If you have some sort of onboarding flow, you can use a button with a Set Column Values action to set a datetime column in the User Profile row.

I see. I don’t have an onboarding flow… :sweat_smile:

You could create a very simple one, something like the following:

  • Create a datetime column in the Users table
  • Add a new tab, and set the source to the Users table, and filter it “where email is signed-in user”
  • Set a visibility condition on the tab so that it is only visible when the datetime column is empty
  • Add some sort of welcome message to the screen, and a button to continue
  • Add a Set Column Values action to the button that sets the current date/time to the datetime column
4 Likes

Thanks @Darren_Murphy will try this out!