📄 How can I filter a table?

You do not want to display all rows of your table in the document, but filter them according to certain criteria.

When creating a table, we learned that you can use the control characters:

[objekt_table] 

[objekt_table_end] 

to end it, e.g. like this:

Now you only want to see the contacts from Paris in your table, proceed as follows:

If you want to apply several filters in succession, you can simply separate them with a comma. F.e. you only want to see the contacts from Paris, which speaks English in your table:

[filter(contact.city="Paris, contact.hs_language="en")]

 

You can use these formats as filters:

  • String (single-line-text)
  • Integer (numbers)
  • Boolean (true/false)