In our base, users can trigger an automation via a checkbox. When the box is checked, the automation creates a linked record in a different table and populates the fields with various text, form links, etc.
The problem is if a user does the following...
UPDATE I was able to get it working with the below code. However, Interfaces does not allow buttons that run scripts, so I’m back to square one on finding a one-way trigger for the linked record creation.
We have an existing automation to create a li...
This makes sense, and would prevent duplicate records. One issue is it would be possible to have an unchecked box even if the linked record was already created, which could be confusing for users.
I didn’t know conditional logic was coming for automa...
I was able to get the button working with the below. Unfortunately, I then learned that interfaces does not allow buttons that call any apps, including scripts.
let table = base.getTable("REQUEST");
let record = await input.recordAsync("Move To Prosp...