Tips and Tricks

Duration in Years

There is no way to represent a duration in years due to a different number of days in a year. You should adjust the formula expression to use the AdjustYear function.

Duration in Months

There is no way to represent a duration in months due to a different number of days in a month. You should adjust the formula expression to use the AdjustMonth function.

New Line for Text

To insert a new line into text, please use the following string "\n". For example, all of the following formulas:

will produce the same result:

aaa
bbb
ccc

Extracting Substring from Text

There is no function which finds the position of one string in another, so you should use the following functions instead:

Extracting Column Value from Previous Record

To extract a column value from the previous record, follow these steps:

  1. Create a many-to-many relation to itself with a matching condition to filter previous records.
  2. Use the newly created relation to create a summary column with the "Index" aggregate function and corresponding sorting to extract the value from the most recent record.

Extracting Column Value from a Related Record

If you have a reference column in a table and wish to extract an additional column value from the related table, you need to create a lookup column using the corresponding relation. After that, you’ll be able to use the newly created column in the formula.

Summarize Column Values over Related Records

If you wish to summarize a column value from the related table, you need to create a summary column using the corresponding relation. After that, you’ll be able to use the newly created column in the formula.

Formula URL Parameter Encoding

Ensure that all calculated parameters for the Formula - URL column are encoded using the URLEncode function.

For example:

"https://www.google.com/search?q=" & URLEncode([Text Column])