Filter different fields on search records airtable module

Hello @Juliusforster,
Your formula is correct but when the user copies from the response those double(”) or single quotes do not work well with Make’s syntax. It needs to be replaced with this ".
You can understand the difference between ” and "


I recommend you add a code block using three backtick
```
your code or formula
```


The output will look like this.

AND(
    {Property} = "house",
    OR({Place} = "Italy", {Place} = "Spain"),
    {Value} > 150
)

This response structure supports all markdown editor syntax.
Check this some of the basic examples from community posts.

:+1: