How to limit activity of form to once 24 hours

I have an app where I want user to input data only once in 24 hours. Can i set this limits in Glide, if yes then how?

Please help

  • Each time a user submits the form, capture the date/time
  • Create a math column that adds 1 day to the submission time (Date+1)
  • Only allow the form to be submitted if that calculated time is earlier than the current date/time.
4 Likes