Hi,
In a table I have set up a mass action to kind of ‘clone’ a row.
Often I would need this action to create multiple new rows using data from the row i selected mass action on (let’s call it original row). the first row created works flawlessly, but all the rows after that, do not get info from original row, they try to fetch it from new row created above.
Here’s my sequence action and the problem is that the first row gets info from original row perfectly.
Create new row
Add default value {{one_months_ago__c}}
Create new row
Add default value {{two_months_ago__c}}
Save changes in model
I tried specifying the row for merge value {{$Model.Bank_Statement.data.0.two_months_ago__c}} , but still not working.
If i put a save action in between each ‘create new row’ It kind of works but takes the info from newly created row instead of original, and it’s very slow , specially if need to create 12 new rows, could take 5 min+…
Any idea how i could force the default values to be always from the original row, on all the new rows?
Thx