Execute an action of a set of rows

I need to set a column [Archive] on a number of rows. Hereโ€™s where Iโ€™ve got so far.

Create Action 1: ArchiveToYes
For a record of this table:โ€œTicksheetโ€
Do This: Data: set the values of some columns in this row
Set the columns: Archive = โ€œYesโ€

Create Action 2: Archive
For a record of this table:โ€œTicksheetโ€
Do This: Data: execute an action on a set of rows
Referenced Table: Ticksheet
Referenced Rows: ???
Referenced Action: ArchiveToYes

So I donโ€™t know what to put in Referenced Rows. The Action needs to set the column [Archive] to โ€œYesโ€ where the [JobID] is equal to This Row throughout the same table.

Any help guys?
(I know Iโ€™ve been busy on here for help today - sorry for that).
Cheers

0 3 155
3 REPLIES 3

Could you attach some screenshots? Will be easier for all of us.

Typically, youโ€™ll want to use FILTER() expression in โ€œreferenced rowsโ€

FILTER("Ticksheet", ([JobID] = [_THISROW].[JobID]))

This does the trick, thanks guys.

Top Labels in this Space