Skip to main content
Question

Automation Error: “Invalid filter value: [‘P454’ ]” when filtering on Lookup / Formula field

  • November 15, 2025
  • 1 reply
  • 25 views

Forum|alt.badge.img+1

Hi everyone,

I’m facing an issue with an Airtable automation and would appreciate some help.

In my automation, I’m trying to Find records where

Project Number  contain  Project Number fx

Both the values are same

It give error:-  Invalid filter on Project Number (Invalid filter value: [ "P454" ])

Could you please the solution for it.

1 reply

TheTimeSavingCo
Forum|alt.badge.img+31

Could you provide some screenshots of your table and automation setup please?

---

The issue is probably due to the value you’re using being an array and you need it to be a string.  As a quick workaround, you could try either of these and I’ve set up an example base here for you to check out

  1. Using a Run a Script action to convert from an array into a string
    output.set('projectName', input.config().projectName[0])
     

     

  2. Using a Generate Text step.  This’ll cost AI credits tho, so if you’re worried about that you’ll want to use a script instead