# Is it possible to shuffle a list of questions weekly?

**URL:** https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341
**Category:** Ask for Help
**Created:** [January 18, 2022, 11:57am UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341 "2022-01-18T11:57:37Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![GuidingLight](https://avatars.discourse-cdn.com/v4/letter/g/76d3ee/32.png) [@GuidingLight](https://community.glideapps.com/u/GuidingLight)
#### Post date: [January 18, 2022, 11:57am UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341/1 "2022-01-18T11:57:37Z")

</div>

If i’m trying to make users see a new question from my list of questions randomly every Sunday is that possible? I do know there’s a shuffle feature but can i make the shuffle weekly?

---

<div class="post-metadata">

### Author: ![Darren\_Alderman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_alderman/32/66660_2.png) [@Darren\_Alderman](https://community.glideapps.com/u/Darren_Alderman)
#### Post date: [January 18, 2022, 2:23pm UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341/2 "2022-01-18T14:23:49Z")

</div>

> [@GuidingLight](#):
>
> If i’m trying to make users see a new question from my list of questions randomly every Sunday is that possible?

Are they just seeing 1 question each week?

You could manually assign a number to each question → `1,2,3...52`.  
Then get the current week number from a math column → `weeknum(now)`.  
Then filter an inline list or use a relation to get the question of the week → `Week Number = Question Number`.

---

<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: [January 18, 2022, 2:43pm UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341/3 "2022-01-18T14:43:05Z")

</div>

Should the random item be able to repeat? If not, this is how I would set it up:

> **[Bob's Project · Glide - 18 January 2022](https://www.loom.com/share/d61f5c61a1b14c29ad0df6eea480b5bd)**

---

<div class="post-metadata">

### Author: ![GuidingLight](https://avatars.discourse-cdn.com/v4/letter/g/76d3ee/32.png) [@GuidingLight](https://community.glideapps.com/u/GuidingLight)
#### Post date: [January 19, 2022, 2:40am UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341/4 "2022-01-19T02:40:11Z")

</div>

yes just seeing one question a week. Would it be random though or just go in order?

---

<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: [January 19, 2022, 11:09am UTC](https://community.glideapps.com/t/is-it-possible-to-shuffle-a-list-of-questions-weekly/37341/5 "2022-01-19T11:09:07Z")

</div>

If you go the @Darren_Alderman way then it will go in the order you set.

If you use random, there’s a possibility that you will have a duplicate question from different weeks. How do you want to handle that part?
