JonathanBowen:
//Tables
let orders = base.getTable('fulfilment');
let codes = base.getTable('test');
//Record Input
let record = await input.recordAsync('Please select a order', orders);
if (record) {
//Record variables
let quantity ...
Would there be a way to keep the name field the same so if there was a 3 in the boxes column then there would just be 3 duplicate records in the test table. Thank you very much for your help, I am quite new at this.
Here is an example of what I am tr...
Yes, thank you for that. I now have:
//Tables
let orders = base.getTable('fulfilment');
let codes = base.getTable('test');
//Record Input
let record = await input.recordAsync('Please select a order', orders);
//Record variables
let quantity = re...
//Tables
let orders = base.getTable('fulfilment');
let codes = base.getTable('test');
//Record Input
let record = await input.recordAsync('Please select a order', orders);
//Record variables
let quantity = record.getCellValue('boxes');
let order...
Thank you for the welcome!
I have tried the one posted by JonathanBowen on Jan 30th, not sure how to copy that script into this post correctly.
When try to run this script I get the following error:
I also tried the first 2 that are at the top of th...