I have created a flow where a user can enter a table name or many table names separated by a semi colon.
The workflow splits the text in an apply to each, then users the table logical plural name in a list rows action.
In another apply to each - derived from the list row action - I have used an expression to grab the owner id value and set it to a variable called varOperationsOfficer, as I need this to update a field in the current item, and since the list action is using a dynamic value for the table ,the fields are not available in the dynamic content menu.
So I have:

I now need to update a field in the current table called OperationsOfficer with the value of the 'varOperationsOfficer' variable,
Normally in the action below (not using a dynamic value for a table) you would target the OperationsOfficer field (which is a lookup field to the user table) and update by:
OperationsOfficer: systemusers(varOperationsOfficer)
However, since I am using a dynamic value for the table in the action below I only have Row Item*
So my question is, how do I update the OperationsOfficer field with my variable?
