I have this script I made a month ago. It worked perfectly fine. Just tried it today and it doesn’t work. The fields that I’m updating with updateRecordAsync do not update. They are just blank.
let newRecord = await main.createRecordAsync(obj)
...
Ok so I can definitely move that createRecords out of the loop, but I’m creating multiple records per one record in this script. So idk how else to do it than put it in a loop?
Is there a good way to copy over filed inputs then? If they never match, then there is no full proof way to copy over data from one table to another?
Which again, is so odd, since this script worked 2 weeks ago no problem. I used it like 40+ times. N...
Ok so did that and it outputted the correct strings. So there definitely is something there!
That’s interesting. I had it work with one where it made 75 records in one go. No problem with it.
Current script:
let activity = base.getTable('Create Activity');
let main = base.getTable('Main');
let record = await input.recordAsync('Pick a record template', activity);
if(record)
{
// Get total num of objects in the three fields
let con...