My record has a field that's named 'Automation history' which is where i want my scripts to keep a log whenever it does some changes, i keep this to identify errors etc. But the issue is that it get's replaced, is there any way to .push that value there instead of overwrite? All the other code i want to keep as is.
This is my code:
let createOpportunity = await tableOpportunities.createRecordAsync({
'Opportunity Name': orgName,
'Organization number': orgNumber,
'Company Type': orgType,
'Foretaksregistret': orgRegisterDate,
'Kommune': orgKommune,
'Postnummer': orgPostNummer,
'Automation history': "Record created at " + yyyy + '-' + mm + '-' + dd + " , fetching infomation from this link: " + opportunityGenerator + "\n "
});