I'm building a "Survey" App that collects User responses to Questions, each User's response is in a separate record in the Responses table. The User should be able to save their response prior to Submitting their response, in order to come back to it to make any changes prior to Submitting their response.
How can I check to see if a Record exists for this particular response, if not then create a new record.
I was thinking of testing by using the lookup function, to see if a record existed that had the Question ID and User().Email, as the combination of these would be unique for each record.
Could someone kindly guide me on this and if possible give me an example of the syntax to use?
Thanks.