May 17, 2022 02:27 AM
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.
May 17, 2022 03:07 AM
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?
May 17, 2022 03:15 AM
I want to write some code here to insert data in the table
May 17, 2022 03:17 AM
i want to add new rates in my rate column of table. in yellow highlighted area
May 17, 2022 03:39 AM
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
May 17, 2022 04:14 AM
May 17, 2022 04:15 AM