AddRow to B and Reference in A
Share
Explore

icon picker
AddRow to B and Reference in A

You can see that the nested approach results in Reference B containing an Action:
image.png
But the Last() approach works:
image.png
Nested Approach
TargetRowNested.ModifyRows(
[Table A].[Reference B],
TargetRowNested.[Reference B].Splice(0, 0, [Table B].AddRow())
)

Last() Approach
RunActions(
[Table B].AddRow(),
[TargetRowLast()].ModifyRows([Table A].[Reference B],
[TargetRowLast()].[Reference B].Splice(0, 0, [Table B].Last())
)
)

Table A
0
1
2
Name
Reference B
TargetRowNested
TargetRowLast()
There are no rows in this table
Table B
0
Name
There are no rows in this table

Share
 
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.