ContributionsMost RecentMost LikesSolutionsRe: Automation firing on save and closeWhat about setting multiple conditions to clear the field? Something like "When the record is saved", and [The last question in your survey] is not equal to "blank"? Re: Highlighting a file with a specific naming conventionI would suggest a formula checkbox to allow the records to self identify as needing to be checked. The formula could be a "If" statement checking the checkbox if whatever condition(s) you set on the file attachement field is true. Then just set row colorization in the report settings to color the row if your newly created checkbox is checked.Re: First Webhook, First Error. API_AddRecord If that is the actual user token, it looks incorrect.Re: Can't load my automations... is QBase down? Same. Annoying...Re: Lock a relationship when creating new recordsI can think of a couple ways to accomplish this, but if it were me I would probably just set up a Formula - Text field for the city and not even use the relationship. Something like this... Case( [Your facility name], "Facility 1", "Tulsa", "Facility 2", "Denver", null )Re: How to create a save button to save a new record and then redirect to outside URLHi Paul! I found this on the QB Exchange (Magic Buttons) and it works perfectly for what I'm wanting to do. "<a class='Vibrant Success' href='javascript:LinkAway(\"" & "https://www.destinationswebpage.com"; & "\");' >Submit & redirect</a>" // This works because you have turned on the table's advance settings, "Save parent record automatically when a child record is created." // This also is borrowing the LinkAway that gets automatically added for formula url fields. We are invoking it here so when we are directed to the success.html page the record is first saved.How to create a save button to save a new record and then redirect to outside URLI am wanting to replace the default green "Save" button with a button that will save the new record and then redirect the user to a URL outside QB. I'm sure this is not that difficult, but I am stumped. Re: Updating Status from one table to anotherI would create a simple action that just says when a "Site Visit" record is added, modify the related record and copy the value from the "Status" field in "Site Visits" to the "Status" field in "Work Order".Check a checkbox in table A if a condition in related table B is trueI have two tables: Table A is used to track vacations for our team. Table B is used for work shift scheduling I want to put a checkbox in the table B form that is automatically checked if that particular work day falls on a day that the corresponding employee is scheduled off because they have an approved vacation recorded on table A. So basically I think I need to write a formula that checks the table A and sees if that employee is scheduled off, and if so, checks the box on table B. But I have no idea how to accomplish this. Help?Add record from external application using AddRecord APII'm relatively new to using APIs in my app, so forgive me if this is a REALLY simple thing. But basically I'm trying to put together a table that when a user "adds" a record by entering an order number into a field on the form, an API makes a call to an external app (that I've verified accepts API calls) and retrieves info for that order number, then adds it to the record, then displays it to the user. So the Quick Base app is basically functioning as a search/retrieve interface for the external application, in addition to logging all search requests. Is this even possible? And if so, where should I start?