How to Add to a List Field Instead of Replacing It (Sign Up Button)

Hello amazing Community :slight_smile: As usual, something that I sure is very very simple :wink: Link to my setup is below. I would like the “Sign Up” button to Add the selected person to the Members field/list, not replacing/removing existing folk.

Also, if possible, when the person is selected in the upper Callout, I would love it if the tasks/shifts already signed up for can display in that area as well. Hope that makes sense! You are all amazing :slight_smile:

https://coda.io/d/_dDAtQ16lkGN/Roster-Info_suKd2vEb

1 Like

Hey @Shannon_Bradley,

You can check your doc and see if that’s what we’re looking for. I would also recommend that you structure your doc a little bit differently for easier maintenance down the road.

1 Like

I see some very cool updates…..thanks so much! Yeah its all a bit clunky right now, I’ve just started playing around with the setup. Any suggestions you have are very welcome!

1 Like

Christian

For future readers, can you give a quick summary of the solution you provided?
Your solution is not visible to readers of the forum.

The referenced document may not be available to everyone in the future.

And future readers may be using the search facility to find answers, so a quick summary here would be most helpful.

Max

Noted.

As @Shannon_Bradley wanted to have users that are in the “Participants“ table and add themselves to the “Full schedule“ table via a column button and append the list from the“Members” column, the solution was as follows:

ModifyRows(
thisRow,
thisRow.Members,
ListCombine(thisRow.Members, SelectSelf)
.Filter(
CurrentValue.IsNotBlank()
)
.Unique()
)

2 Likes

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