Expression for Referenced Rows range

Hi,

I have an action in my rf_design table called: UPDATE ROW (in rf_design table).
It works as expected and pops a name into the rf_design table column [cabinet_assigned_to]

I then have an action in the survey table called: UPDATE SET OF ROWS (in rf_design table)
I have this action here because this is where I run my Grouped: execute a sequence of actions โ€” EXECUTE ON SAVE of survey form.

Iโ€™m having difficulty with the Reference Rows expression

I think what I need is something like get list of rf_design[id] where the rf_design[asset_id] is the same as survey[asset_id]โ€ฆ?

Thanks in advanceโ€ฆ

Solved Solved
0 4 247
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

3X_7_8_7821a9825a290bc8624ed9653271265d01fdbc37.png

Should be:

SELECT(
rf_design[id],
[asset_id] = [_THISROW].[asset_id])

View solution in original post

4 REPLIES 4

Steve
Platinum 4
Platinum 4

3X_7_8_7821a9825a290bc8624ed9653271265d01fdbc37.png

Should be:

SELECT(
rf_design[id],
[asset_id] = [_THISROW].[asset_id])

Thanks @Steveโ€ฆ That does it exactlyโ€ฆ

survey[asset_id] = [_THISROW].[asset_id]

You are comparing a list to a row, you cant do this,

Thanks @Jonathan_Sโ€ฆ

Top Labels in this Space