Help

Re: Extract/filter unchecked items from a rich text field

Solved
Jump to Solution
1026 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Brian_LWA
6 - Interface Innovator
6 - Interface Innovator

Every day I update all of my clients on the items I need from them so I can keep their projects on track. Having separate records for every single subtask is overkill so a single record is the parent record and I use the rich text check boxes “”/“” to keep track of the subtasks.

For example:
image

As the clients completes subtasks, I manually draft up an email or text with what is still needed.
image

So I’m looking for a way to filter out subtask #2 and only leave me with:

  • Subtask 1
  • Subtask 3

Any ideas?

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hmm, you could potentially try to do this via regex maybe, resulting in the following:

Screenshot 2022-11-24 at 11.09.02 AM

And from there you could manipulate it further for your email?

Link to base

And here’s the formula:

SUBSTITUTE(
  REGEX_REPLACE(
    Notes,
    ".+([x].+)",
    ''
  ),
  '\n\n',
  '\n'
)

See Solution in Thread

3 Replies 3
Nathaniel_Grano
8 - Airtable Astronomer
8 - Airtable Astronomer

Airtable does not give us a way to split apart data from a field within a formula, so you will not be able to do this as an automatic feature within your table. However, it should be possible to make this happen using a script (or a script action within an automation).

The basic algorithm will be to split the contents of the tich text field on the line break character, check each row for a filled checkbox character and then re-join only the rows that do not have the filled checkbox character. You could maintain a second field (perhaps called “filtered summary”) where the script/automation outputs the filtered rich text.

EDIT: years later and I still forget about those regex functions! @Adam_TheTimeSavingCo’s solution is super clever!

TheTimeSavingCo
18 - Pluto
18 - Pluto

Hmm, you could potentially try to do this via regex maybe, resulting in the following:

Screenshot 2022-11-24 at 11.09.02 AM

And from there you could manipulate it further for your email?

Link to base

And here’s the formula:

SUBSTITUTE(
  REGEX_REPLACE(
    Notes,
    ".+([x].+)",
    ''
  ),
  '\n\n',
  '\n'
)

Perfect! This is exactly what I needed. Thank you Adam!