reverse

Learn how to use the reverse function in Notion formulas.

New in Formulas 2.0

The reverse() function will reverse the items in a list.

reverse(list) list.reverse()

If you require reverse sorting, simply sort the list first before reversing.

[1, 5, 4, 3, 2].reverse() /* Output: [2, 3, 4, 5, 1] */ [1, 5, 4, 3, 2].sort().reverse() /* Output: [5, 4, 3, 2, 1] */
reverse(["Luffy", "Zoro", "Nami", "Chopper"]) /* Output: ["Chopper", "Nami", "Zoro", "Luffy"] */
About the Author

My name is Thomas Frank, and I'm a Notion-certified writer, YouTuber, and template creator. I've been using Notion since 2018 to organize my personal life and to run my business and YouTube channel. In addition to this formula reference, I've created a free Notion course for beginners and several productivity-focused Notion templates. If you'd like to connect, follow me on Twitter.

🤔 Have an UB Question?

Fill out the form below and I’ll answer as soon as I can! ~Thomas

🤔 Have a Question?

Fill out the form below and I’ll answer as soon as I can! ~Thomas