Skip to main content

Update a cell by adding other record without replacing it

  • December 22, 2019
  • 1 reply
  • 0 views

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

Forum|alt.badge.img+15
  • Inspiring
  • 57 replies
  • July 4, 2023

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


Reply