Kuovonne's Guide to Airtable
Share
Explore
Kuovonne's Guide to Airtable
Writing Formulas

Formulas to avoid

Thank Kuovonne for creating this content!
Avoid the following situations. They can slow down a base:
NOW(), TODAY(), TONOW(), and FROMNOW(). These formulas recalculate for every record in the table even when there are no data changes. This can slow down your base. Plus, NOW() is notoriously inaccurate. It can be off by anywhere from a few minutes (when you are looking at a view) to a few hours (when the base is closed).
Long chain formulas — formula fields that are used in formula fields that are used in formula fields, etc. It can take a long time for these long chains to fully resolve.
Rollups based on linked record fields with many linked records. The more linked records you have, the more calculations are required for the rollup. If you have hundreds or thousands of records all linked to the same record, it can take a long time for rollups to recalculate.
Multiple back-and-forth rollups. A single rollup of a rollup is often the best way to perform certain calculations. However, the more times you go back-and-forth, the longer it takes for Airtable to update all calculations.
Also avoid the following situations. You can get unexpected results:
Comparisons with BLANK() or FALSE(). You can directly test the field value to see if it is blank or false.
Date comparisons using logical operators instead of date comparison functions.
VALUE() with text strings that contain letters or symbols other than digits. You can get unpredictable results.
Lookup fields, unless you are very confident in what you are doing. In general, you are better of converting the lookup to a rollup.
Rollup fields that rollup text without ARRAYJOIN(). You might end up with an array, which can have unexpected results.
Thank Kuovonne for creating this content!

Share
 
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.