Other text functions
- 04 Oct 2022
- 1 Minute to read
- Print
- DarkLight
Other text functions
- Updated on 04 Oct 2022
- 1 Minute to read
- Print
- DarkLight
Article Summary
Share feedback
Thanks for sharing your feedback!
In this article, we’re going to take a look at a couple of other text functions that can extend functionality in your Airtable base. This article is part of a guided course which you can view here.
T()
REPT()
These functions are very simple, so it won’t take too long to learn how they work.
T()
This function returns the argument if it is text, and otherwise returns blank.
T("Text only")
would return the argument, "Text only", while T(42)
would return as blank.
REPT()
This function repeats any referenced string a specified number of times.
For example, REPT("Hi! ", 3)
would result in Hi! Hi! Hi!
.
Formula FoundationsThis article is part of a guided course that helps you learn how to use Airtable formulas. |
Was this article helpful?