Upload csv file and Parse (WeWeb-Xano)

Hey @Alexis, I’m currently using Supabase to do this. I have it working perfectly, but would like to run a check before the Insert execution to see if it already exists in the db. Any tips on how to achieve this?

My table is of contacts and I’m allowing users to upload a csv to populate. I want to run a check first to ensure the record does not already exist but having trouble figuring out how in the loop to do this.

Hi, you can simply add a request Select before the change variable value and the insert, and see if it return a result or not

You can also use the Upsert action instead of the Insert one, it will insert only if the row doesn’t already exist