Help

Update a cell by adding other record without replacing it

Topic Labels: API
932 1
cancel
Showing results for 
Search instead for 
Did you mean: 
kaleab_yalewdeg
4 - Data Explorer
4 - Data Explorer

Please help me its urgent. I only wanted to update a cell by adding (appending) new value to it to make it like the picture I provided, but it is replacing the previous cell value here is my code that updates.
base(‘Participant Score’).update([
{
“id”: “recZbJYK8KPYZcIdI”,
“fields”: {
“Score”: [
“recvwoc3tOqfdjXUk”,
“rec0CRNPStI5JI0zN”
]
}
}], function (err, records) {
if (err) {
console.error(err);
return;
}
records.forEach(function (record) {
res.status(201).send(record)
});
})

1 Reply 1
Ella
7 - App Architect
7 - App Architect

Hi,

I realize this post was from a while ago but I have a very similar issue and would like to know if there ever was a solution.

Thanks