Help

Upload files for guests

Topic Labels: Collaboration
Solved
Jump to Solution
962 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Alex_Zitti
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello everyone,

I would to share a specific view with my client throughout the view share link (he hasn’t an airtable account) and I would like to give him the possibility to upload files to a specific record without adding new records. Is it possibile?

I tried with a form but every time I upload a file I’m creating a new record while I would like to upload the file to an existing record.

Thank you very much,
Alex

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

Welcome to the Airtable community!

An Airtable form always creates a new record.

Here are some options for you:

  • Have a form for uploading the file, and also include something that uniquely identifies the original record. You can prefill the uniquely identifying information in a url button field. (My app Ready-Made Formulas makes building the formula for the url very easy, and this formula is free.) Then have a scripting automation that moves the uploaded file to the original record. I have written several versions of scripts that do this for clients. (The script can replace any existing attachment, append or prepend the new attachment to existing attachments, or move existing attachments somewhere else.) This method also protects the privacy of other data in your base, can provide error handling if the user messes with the prefill, and can delete/clean-up the no-longer-necessary record that was created by the form.

  • Have a form for uploading the file, prefilled with uniquely identifying info as before, but use the find records action to find the original record and update record action to move the attachment, or to create a link between the original record and the new record with the attachment. This method is not as robust as the scripting method, and cannot delete the no-longer necessary record that was created by the form, but can be made to work.

  • Use a 3rd party “portal” tool such as miniExtensions, Stacker, etc.

See Solution in Thread

2 Replies 2
kuovonne
18 - Pluto
18 - Pluto

Welcome to the Airtable community!

An Airtable form always creates a new record.

Here are some options for you:

  • Have a form for uploading the file, and also include something that uniquely identifies the original record. You can prefill the uniquely identifying information in a url button field. (My app Ready-Made Formulas makes building the formula for the url very easy, and this formula is free.) Then have a scripting automation that moves the uploaded file to the original record. I have written several versions of scripts that do this for clients. (The script can replace any existing attachment, append or prepend the new attachment to existing attachments, or move existing attachments somewhere else.) This method also protects the privacy of other data in your base, can provide error handling if the user messes with the prefill, and can delete/clean-up the no-longer-necessary record that was created by the form.

  • Have a form for uploading the file, prefilled with uniquely identifying info as before, but use the find records action to find the original record and update record action to move the attachment, or to create a link between the original record and the new record with the attachment. This method is not as robust as the scripting method, and cannot delete the no-longer necessary record that was created by the form, but can be made to work.

  • Use a 3rd party “portal” tool such as miniExtensions, Stacker, etc.

Thank you very much @kuovonne for the solution. I will try to implement the button with the scripting automation. Fantastic community :slightly_smiling_face: