# Glitches in actions

**URL:** https://community.glideapps.com/t/glitches-in-actions/65916
**Category:** Ask for Help
**Created:** [September 8, 2023, 1:51pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916 "2023-09-08T13:51:49Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![John\_Romano](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/john_romano/32/74316_2.png) [@John\_Romano](https://community.glideapps.com/u/John_Romano)
#### Post date: [September 8, 2023, 1:51pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/1 "2023-09-08T13:51:49Z")

</div>

i get glitches in actions after i submit a form, the values in set columns dont work. i have to go in and delete the value, then close out action, re open and put it back in. this happens randomly across the board all over… what is happening?

---

<div class="post-metadata">

### Author: ![John\_Romano](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/john_romano/32/74316_2.png) [@John\_Romano](https://community.glideapps.com/u/John_Romano)
#### Post date: [September 8, 2023, 1:57pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/2 "2023-09-08T13:57:39Z")

</div>

> **[Glitch in App Task Setting](https://www.loom.com/share/8943f299260042d2a1dc3cb0e14f45dd?sid=e750a223-b588-42ba-b5f9-3ccd6f15bdae)**
>
> In this video, I demonstrate a glitch in our app's task setting feature. I show how the task setting works on both the computer app and the mobile app. I explain the process of setting a quote task and how it automatically sets a reminder. However, I...

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [September 8, 2023, 2:45pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/3 "2023-09-08T14:45:08Z")

</div>

Maybe a question here is why you need to write true/false as text. Wouldn’t it be better if you use it as a boolean column and don’t have to write anything if it’s not true?

---

<div class="post-metadata">

### Author: ![John\_Romano](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/john_romano/32/74316_2.png) [@John\_Romano](https://community.glideapps.com/u/John_Romano)
#### Post date: [September 8, 2023, 3:38pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/4 "2023-09-08T15:38:39Z")

</div>

It’s the same thing. true and false.

But I want the natural behavior to write the column not do it before on a hidden default field. I believe the natural flow should auto set the field so I connect all task or meeting creations to one workflow action, not hide a default hidden field in every form.

But never the less the matter at hand whether Boolean or not, true is check and false is unchecked and the system behavior is not consistent within glide for this. Kind of erratic.

---

<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: [September 8, 2023, 5:05pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/5 "2023-09-08T17:05:32Z")

</div>

Boolean Checked = true  
Boolean Unchecked = false OR blank

Blank can be accounted for as false if it’s a boolean and you use the ‘not checked’ operator on it. There really shouldn’t be very many scenarios where you explicitly have to write ‘false’…unless you are using a boolean with 3 possible states instead of 2.

I don’t put a lot of faith in using On Submit like you are. There’s way too much reliance on the row actually existing by the time the On Submit actions fire, which is pretty damn quickly. I’m guessing you are trying to update a row that doesn’t completely exist yet when the action fires. If you want to keep using On Submit, then I recommend putting in a Wait action to give the row time to be written before the rest of your actions fire.

---

<div class="post-metadata">

### Author: ![John\_Romano](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/john_romano/32/74316_2.png) [@John\_Romano](https://community.glideapps.com/u/John_Romano)
#### Post date: [September 8, 2023, 5:14pm UTC](https://community.glideapps.com/t/glitches-in-actions/65916/6 "2023-09-08T17:14:26Z")

</div>

aaaaahhhhhhhh…i find this good info yet troubling… while we all live one second at a time, computers are living one milli of a milli second at a time, which brings up a large engineering question on why i should have to implement a wait scenario among any updated behavior like this across the app

---

<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: [September 9, 2023, 5:01am UTC](https://community.glideapps.com/t/glitches-in-actions/65916/7 "2023-09-09T05:01:43Z")

</div>

Just don’t do it and then you won’t have the problem to worry about. There are much better - and more reliable - ways to get the outcome you desire.

Jeff: “this road is dangerous, better not to play on it.”  
John: “yeah well I don’t care, I’m just going to play in the middle of the road anyway.”

---

<div class="post-metadata">

### Author: ![John\_Romano](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/john_romano/32/74316_2.png) [@John\_Romano](https://community.glideapps.com/u/John_Romano)
#### Post date: [September 10, 2023, 11:09am UTC](https://community.glideapps.com/t/glitches-in-actions/65916/8 "2023-09-10T11:09:20Z")

</div>

😁😁😁❤❤
