Hi All.
I would like to create and update Airtable records :
- when new product will be created on Woocommerct then New record in Airtable should be created. This record should include Name, Status and Woocommerce ID.
Where:
record 1 → original record created from scratch
record 2 → updated record
record 3 → create new record when this same ID already existing
Q1. What type of filter I have to use to pass this workflow.
Woocommerce Product ID not existing ant this time ?
- I would like to update exiting records by searching for WooCommerce ID and then
a) if Woocommerce Product ID = Airtable Woocommerce Product ID = Update record
b) If Woocommerce Product ID not exist = Create new record
I try following diagram , where on Search added following formula:
AND({Woo_Commerce_product_ID} = “{Product ID}”,NOT(Woo_Commerce_product_ID = ‘1’))
Unfortunately Airtable Update record addin new record with this same data.
blueprint.json (68.2 KB)
In theory scenario is simple:
When Woo_Commerce_product_ID exist
then update record
or
When Woo_Commerce_product_ID dos’t exist
Then create record
Any idea how to fix my diagram ?