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.
Hi
This relates to this Topic
This is the code I have:
let repoT = base.getTable('Repo');
let sourceT = base.getTable('Source');
let record = await input.recordAsync('Pick a record', sourceT);
// let name = record.getCellValue('Part 1') + '-' + reco...
Hi
I managed to get a button to run a script to populate a linked field with a unique value, thanks to the exellent advice by @JonathanBowen
The link to the topic is here
As the populated field only ever has the value pasted by the script or is empty...
Hello there
I would like to avoid user copy and paste in one of our tables. For this is have created a button and modified the excellent ‘copy values from one field to another’ script by @JonathanBowen to my needs.
This works really well to copy a va...
hi @Justin_Barrett @kuovonne
thanks both so much for your response. Ok the expanded record I strike from the wish list.
Assuming the code above is my code and the record that I have just created with that code is the one the I want to change the valu...
Justin_Barrett:
let repoT = base.getTable('Repo');
let sourceT = base.getTable('Source');
let record = await input.recordAsync('Pick a record', sourceT);
// let name = record.getCellValue('Part 1') + '-' + record.getCellValue('Part 2');
if (!r...
Hi @JonathanBowen
It just occured to me that there could be a simple trick to avoid duplicates at least from the same record, eg the person clicking the button twice.
Is there a way to do an IF statement whicht checks if the ‘Part Created’ field is e...