The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
console.log(`Starting...`);
let table = base.getTable("Imported table");
let inputConfig = input.config();
let last_name_array = inputConfig.last_name.split(' ');
let formatted_first_name = last_name_array.shift();
let formatted_last_name = last_...