list base on information from the row in a table that triggered an event

Is is possible to create a list base on information from the row in a table that triggered an event?

Screen Shot 2022-10-09 at 8.04.54 PM.png

 

SELECT([ID], [ID] = [The row from the other table that triggered the event].[reference column to parent table])

 

Screen Shot 2022-10-09 at 8.08.27 PM.png

Solved Solved
0 2 117
1 ACCEPTED SOLUTION

The Referenced rows property requires a list of IDs from the Referenced Table. Since the action was triggered from a row that includes the ID you want in the Ref type column that links it to its parent table, you should be able to just use that column's value. Since it needs to be a list type value, use the LIST function. Try:

LIST([Ref column])

View solution in original post

2 REPLIES 2

I basically would like to trigger an action on only the row that matches ID with the child row that triggered the event.

The Referenced rows property requires a list of IDs from the Referenced Table. Since the action was triggered from a row that includes the ID you want in the Ref type column that links it to its parent table, you should be able to just use that column's value. Since it needs to be a list type value, use the LIST function. Try:

LIST([Ref column])
Top Labels in this Space