Hello,
I am new to Airtable. can someone inform how to insert data in cell or field in table with the help of code.
Waiting for your response.
Hello,
I am new to Airtable. can someone inform how to insert data in cell or field in table with the help of code.
Waiting for your response.
Hm, well Airtable has an API, and also has Scripting (JavaScript) available as both Apps and as part of an Automation
Is that what you’re thinking of?
i want to add new rates in my rate column of table. in yellow highlighted area
Hm, I’m going to assume that you want to update the same record where you’re getting the names
and days
value, and that the column header of the rate column is “Rate”
If so, try replacing everything inside the if(designation === "HCA"){}
block with this:
await table.updateRecordAsync(record.id,{
"Rate": rateHCA
})
Let me know if this isn’t what you’re looking for and I’ll see what I can do