# Adding a 2nd Item Click Action

**URL:** https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450
**Category:** Ask for Help
**Created:** [November 20, 2025, 4:16am UTC](https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450 "2025-11-20T04:16:37Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Jayson\_Wendell](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jayson_wendell/32/87150_2.png) [@Jayson\_Wendell](https://community.glideapps.com/u/Jayson_Wendell)
#### Post date: [November 20, 2025, 4:16am UTC](https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450/1 "2025-11-20T04:16:37Z")

</div>

Can anyone guide me in creating a 2nd item click action please? I have a 1st “item click” action which adds a row to my task log on a different screen, which then triggers a check mark signifying it is done. I’d to add a 2nd “item click” action where in tapping the item would undo the 1st “item click” action. Appreciate any help.

jayson

---

<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 20, 2025, 7:13am UTC](https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450/2 "2025-11-20T07:13:21Z")

</div>

Just set up a workflow for the button with a condition:

- If condition = false, add row (as you’ve done right now)
- If condition = true, set column values to false (or delete row, depending on your use case)

Then, if you want to make it pretty, add an if-then-else column in the table you’re using:

- If condition = false: “Confirm”
- If condition = true: “Undo”

Then use that column for the text on the button. The button now has 2 functions and will have a relevant “label” (button text)

---

<div class="post-metadata">

### Author: ![Jayson\_Wendell](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jayson_wendell/32/87150_2.png) [@Jayson\_Wendell](https://community.glideapps.com/u/Jayson_Wendell)
#### Post date: [November 21, 2025, 12:57am UTC](https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450/3 "2025-11-21T00:57:42Z")

</div>

Appreciate the feedback. I’m not sure how that would work. Basically I’m trying to create a toggle on/off.

---

<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: [November 22, 2025, 12:56am UTC](https://community.glideapps.com/t/adding-a-2nd-item-click-action/85450/4 "2025-11-22T00:56:55Z")

</div>

It works as a branched action and would show the label correctly on the front end based on conditions @jb_1mprove has lined out.

Or if it’s complex for you to setup, you can just have multiple actions and show/hide them based on conditions.
