Troubleshooting

How to diagnose and fix formula fields that aren't returning the expected value in Noloco. Common pitfalls include comparing Single/Multiple Option fields against bare identifiers instead of quoted op

If your formula isn't working as expected, the most common cause is an incompatible field type. For example, trying to perform a calculation on a text field, or using a date field in a way that requires a number, will cause errors.

A frequent mistake is when fields are set up as text fields but used in a formula as if they were numbers β€” for instance, comparing two text values like "45" and "60" as though they were numeric. Since they're stored as text, the formula can't evaluate the comparison correctly.

Tip: If you intend to run numeric operations, make sure the fields are set to a number type. Double-checking and adjusting field types usually resolves the issue quickly.

Troubleshooting checklist

  1. Check field types β€” confirm whether the fields in your formula are text, number, date, boolean, etc.

  2. Match field type to operation β€” ensure the operation you're performing (e.g., addition, concatenation) is valid for that field type.

  3. Adjust if needed β€” update the field type (for example, change from text to number) or rewrite the formula to match the data type.

  4. Test the formula β€” try the formula by selecting a record and seeing if the preview result matches what you expect.

Common pitfalls

Comparing against Single / Multiple Option fields

When you compare a Single Option Select or Multiple Option Select field, the comparison value must be the option's name (its underlying value) written as a quoted string β€” not a bare identifier.

  • βœ… Correct: status = "Approved"

  • ❌ Wrong: status = APPROVED β€” bare identifier; the formula treats APPROVED as a missing field reference.

  • ❌ Wrong: matching against the option's display label when it differs from the underlying name β€” use the name, not the display value.

NULL, TRUE, and FALSE need parentheses

These are functions in Noloco formulas. They must be called with parentheses:

  • βœ… Correct: NULL(), TRUE(), FALSE()

  • ❌ Wrong: NULL, TRUE, FALSE

Spreadsheet functions that don't exist in Noloco

Some common spreadsheet operators have no Noloco equivalent. See the Not supported section on the date & time operators page β€” most notably:

  • NETWORKDAYS is not supported. Use WORKDAY when you need a date N working days from a start date.

  • DATEADD is not supported. Use the + operator (e.g. date + 7) or EDATE for months.

NOW() and TODAY() don't auto-refresh

NOW() and TODAY() are supported, but they're not live values. A formula field only recalculates when its referenced fields change (or when the formula or the record is created or edited) β€” so a due_date - TODAY() formula will not tick down on its own each day. If you need a live "days until" or "elapsed time" value, use a runtime filter or a workflow instead of a formula field.

Last updated

Was this helpful?