Can't write a RecordID to a linked Field
Hi All
After many hours of trying, I have to ask for help 😁:
I'm getting an error "Field "fldxxxxxxxxx" cannot accept the provided value." The field that is failing is Worker.
After testing, everything here works fine and writes well to the base except "Worker": item.workerID.
Worker is a linked field, and I thought it would accept a record ID.
workerID is definately a valid recordID as I've tested in manually by pasting the values into the worker field.
Does anyone know what might be going wrong?
const outputTable = base.getTable('Work Weeks');
for (item of result) {
await outputTable.createRecordAsync({
"Week Number": item.week,
"Total Hours": item.value,
"Worker": item.workerID,
})};
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
