# Multiple Actions

**URL:** https://community.glideapps.com/t/multiple-actions/22207
**Category:** Ask for Help
**Tags:** actions
**Created:** [February 3, 2021, 8:15pm UTC](https://community.glideapps.com/t/multiple-actions/22207 "2021-02-03T20:15:44Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![olivier\_eldani](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/olivier_eldani/32/17273_2.png) [@olivier\_eldani](https://community.glideapps.com/u/olivier_eldani)
#### Post date: [February 3, 2021, 8:15pm UTC](https://community.glideapps.com/t/multiple-actions/22207/1 "2021-02-03T20:15:44Z")

</div>

Hi guys,

New features are really auwsome !  
But I’m struggling a bit with:

I’m building a content app, where user can create “Playlist” like in spotify.  
The idea is to let them create their own playlist of content, and add pieces of content in those playlists.

I wanted to do this thanks to a button on one content (it could be a book) that trigger a multiple action.

But I’m struggling creating the two scenario I have in mind:

1. Adding the book in a existing playlist
2. Adding the book, in a new playlist that the user can create

I gave you a video: [Bubbles - Teamwork. On your time.](https://app.usebubbles.com/5xUizGeEh8MFYBhWUEqAok/comments-on-go-glideapps-com/)

Thanks in advance for your help 🙏🏻

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [February 4, 2021, 12:10am UTC](https://community.glideapps.com/t/multiple-actions/22207/2 "2021-02-04T00:10:49Z")

</div>

You’ll want to have a sheet called Playlists. Users can add new rows to this sheet via a form button. It should contain a user ID of some kind and a playlist ID. Create another sheet called playlist items. This should contain a userID column, a playlistID column and a column to contain the contentID.

Then, on each piece of content, you could have a button with a link to screen → this item. On this screen you could have a choice component that will let the user select one of their playlists (write this value to a user specific playlistID column within the content details sheet). After they select a playlist ID, display a “add item to playlist” button that has an add row action to add the contentID, their selected playlistID and their userID to the playlist items sheet.

Even better make this a multi step action that displays a notification, and goes back.

Hopefully this all makes sense.

This would be an even better experience if we had something like this:  
[Modal “Link to Screen” option](https://community.glideapps.com/t/modal-link-to-screen-option/20261)

@mark? 😁

---

<div class="post-metadata">

### Author: ![olivier\_eldani](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/olivier_eldani/32/17273_2.png) [@olivier\_eldani](https://community.glideapps.com/u/olivier_eldani)
#### Post date: [February 4, 2021, 8:14pm UTC](https://community.glideapps.com/t/multiple-actions/22207/3 "2021-02-04T20:14:00Z")

</div>

Hi Robert,  
Thanks a lot for your help. I’m gonna execute this strategy, thanks a lot.
