Is there anyway to create multiple verticallist on a page?

I have a vertical list of tasks, each task has a date when it needs to be done. i want to create an ‘upcoming’ page, where it shows day of each event. So at the top goes the date, then kist of tasks that are that date, then a next date at the bottom and another list of tasks that has this date. how can i create it. :folded_hands:

Yes, you can do this by using a repeating group inside another repeating group — basically, grouping your tasks by date.

Here’s how you can set it up:

  1. First, create a repeating group that shows a list of unique dates from your tasks.
    (You can use a plugin or do some backend processing to get a list of unique dates.)
  2. Inside that repeating group:
  • Add a text element to display the date.
  • Then place another repeating group below it that shows all the tasks with that same date.
    (You can set its data source to: Search for Tasks:filtered where Date = Current cell's date.)

That’ll give you a layout where each date shows up with the list of tasks below it — just like an upcoming events page.

Are you saving the task date as a full date/time or just the date?
Do you want to group by full day (ignoring time) or include time as well?

Happy to help further if you’re stuck on anything!

Hi, thank you trying to help! The thing is that there is no repeating group in mobile bubble version

The element most similar to a repeating group for Mobile is called a “Short List” - it’s got some differences but you should find it close enough to do what you’re asking.

Thank you!

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.