To be 100% honest, for every other platform I tried to use that seemed technically more geared for what I wanted, they always failed in a bunch of other places that AppSheet already makes easy. HoneyCode, for example, has super cool custom UI editing capabilities - just drag n drop instead of hardcoded views. But, like, relational lists were impossible. Not difficult, just didn’t exist (at the time, don’t know currently). Dereferencing wasn’t a thing either. AppSheet is so good because its powe…
The examples in each doc have a use-case: email conditionals. ENDSWITH("@gmail.com", [Email]) is conceptually simpler and more efficient than ("gmail.com" = INDEX(SPLIT([Email], "@"), 2)).
Alrighty, this came handy replacing some janky text based expressions in a little of my secret sauce around triggers and workflows…
I decided to make it a tip and trick:
[Trigger Workflow With A Simple Action Button](https://community.appsheet.com/t/trigger-workflow-with-a-simple-action-button/36847) Tips & Tricks ?
*This tip will let you trigger a workflow without having to double back and clear the trigger column. Let’s create an action to trigger a workflow that sends an email. First, every table I create has a hidden trigger column, type text. Second, let’s create a simple data change action for the table that we want to trigger on with the following expression: CONCATENATE(“UNIQUE_KEY_WORDS”, " - ", NOW()) The key word can be anything you want, but you’ll want it to be unique and descriptive to wha…