Please Guide: I a party app I want to create for my wife, I need the following help as I am unable to build despite many attempts
- Create RSVP with Three Options to Select : Yes , No, Maybe
- When one of the options is selected, I want to track the total for each of the three responses (how many yes, no and maybe)
- To-Do-List with the option to tick off when the task is completed.
Thanks to all who will be responding
You can store RSVP submissions in a separate table, and use rollups to track how many selections are there for each choice.
To-Do List, assuming they are the same for every user, can be tracked with a boolean user-specific column. Create a table for the list, then use a checklist collection for that.
Do you plan to do any further work with the to-do list data?
Thanks for the guidance. For the To Do List is to create to do list and track the status - started, not yet and completed and able to display it.
If the status is not boolean (Completed or not), I would suggest a choice component to edit it, not a checklist.
You can use a custom collection to add the title of the tasks, and a choice component to track the status.