Check if table record exists via expression

Hi,

Is it possible to check if a table record exists via an expression? I’m looking to run a trigger if any expression is met but only if the table record exists. e.x. Table.PCB.has record with id(“123456“) (This would return true.).

I know I can achieve this with a table aggregation but am exploring my options before going that route.

1 Like

As far as I know you can use

  • aggregation (as you mentioned)
  • If statement If Table 'xyz' Has Record With Id ‘123456’
  • Table API (call record and check result variable against null)

You can not check “Has record with Id” directly in the expression editor.