# Workflow Trigger Issue with Computed Column

**URL:** https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551
**Category:** Ask for Help
**Created:** [November 25, 2025, 2:25pm UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551 "2025-11-25T14:25:35Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Joas\_MATOTO](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/joas_matoto/32/83225_2.png) [@Joas\_MATOTO](https://community.glideapps.com/u/Joas_MATOTO)
#### Post date: [November 25, 2025, 2:25pm UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/1 "2025-11-25T14:25:35Z")

</div>

Hi Glide team,

I set up a workflow to send an email when a computed column (`ValidationFailed`) becomes true. This column checks if any of four validation fields equal “Non validé.” The automation has conditions (`ValidationFailed = true` and `EmailSent = false`) but it doesn’t trigger automatically when the computed column changes.

I think the issue is that Glide doesn’t treat computed column updates as row updates. How can I structure the workflow so it fires itself whenever one of the validation fields changes and `ValidationFailed` becomes true?

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [November 25, 2025, 3:43pm UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/2 "2025-11-25T15:43:31Z")

</div>

Computed columns are usually computed directly on the user’s device. They are not stored values.

In any case, workflows are not automatically triggered by any sort of data change unless you are using a scheduled workflow, there is some kind of user interaction that triggers a workflow, or some external service triggers one of your workflows. You have to specify when and how a workflow is executed. It does not run on it’s own without any direction.

What you should be looking at is when ValidationFailed gets set to true. When you change any of your other validation fields, that’s when you should be doing something to call your workflow to send an email.

---

<div class="post-metadata">

### Author: ![Joas\_MATOTO](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/joas_matoto/32/83225_2.png) [@Joas\_MATOTO](https://community.glideapps.com/u/Joas_MATOTO)
#### Post date: [November 26, 2025, 8:44am UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/3 "2025-11-26T08:44:00Z")

</div>

“So it means that a workflow can’t execute itself just because a computed column changes. I have four validation fields, and if any one of them is set to ‘false,’ the workflow should automatically send an email to the user and update another row in the table. How can I achieve that?

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [November 26, 2025, 9:50am UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/4 "2025-11-26T09:50:44Z")

</div>

What happens that causes any one of them to be false? Is it based on something a user does? If yes, you should trigger the workflow at that point.

---

<div class="post-metadata">

### Author: ![jb\_1mprove](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jb_1mprove/32/92375_2.png) [@jb\_1mprove](https://community.glideapps.com/u/jb_1mprove)
#### Post date: [November 29, 2025, 6:45am UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/5 "2025-11-29T06:45:36Z")

</div>

If it is okay for you that the workflow isn’t triggered IMMEDIATELY, then you could just run the workflow using a Schedule Trigger (for instance every day), looping over values where the condition is false.

---

<div class="post-metadata">

### Author: ![system](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/system/32/53398_2.png) [@system](https://community.glideapps.com/u/system)
#### Post date: [December 6, 2025, 6:45am UTC](https://community.glideapps.com/t/workflow-trigger-issue-with-computed-column/85551/6 "2025-12-06T06:45:41Z")

</div>

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
