Search

at() | Beginner’s Guide to Notion Formula

post type
notion
formula
tutorial
status
published
author
created time
2024/10/23 12:54
description
Discover how to utilize the at() function in Notion formulas to easily access specific items in your lists! This comprehensive guide breaks down the structure of at(), explains how it works, and provides practical examples. Learn how to streamline your data retrieval processes and enhance your overall workflow in Notion.
cover image
Frame 4.png
1 more property

This is your sign to try at()

The at() function allows users to retrieve an item from a list at a specified index. This function is particularly useful for accessing specific values without the need for complex iterations or searches. In this blog post, we will explore the structure of the at() function, break down how it works, and provide examples to demonstrate its utility.
For this guide, I referenced the Notion Formula documentation and added my own examples and explanations.

Summary

Name
Syntax
Description
Example
at()
at(list, index) or list.at(index)
Designed to return the item located at a particular index within a list
at(["Apple", "Banana", "Cherry", "Date", "Elderberry"], 2) → “Cherry”

at() Formula

How at() works

The at() function is designed to return the item located at a particular index within a list.
The syntax for the at() function is as follows:
at(list, index)
Notion Formula
복사
Breaking it down
list: The collection of items from which you wish to retrieve a specific item.
index: The position of the item you want to access (using a zero-based index)

Example of at()

Search
example
description
formula
results
Getting an item at a specific position.
at(["Apple", "Banana", "Cherry", "Date", "Elderberry"], 2) - In this example: • The list consists of five fruits. • The index is 2, indicating that the function should retrieve the third fruit (since indexing starts at zero).
Cherry

Conclusion

The at() function in Notion Formula is an useful tool that allows users to easily access specific items within lists. Try out and experiment with list functions including at() to take your Notion to the next level.
Thank you for reading this tutorial! If you found it helpful, be sure to check out shop for my beautiful templates, which I am confident enough to say are a game-changer Subscribe to my newsletter and feel free to follow me on my social media for updates!
Happy Notion(ing)!
Search