I have a Dataverse step in my Power Automate flow where I am getting all Accounts owned by the current user. However, I am struggling to write the expression in the filter rows section to accomplish that. I wrote
_ownerid_value eq triggerOutputs()?['body/_ownerid_value']
as one of my attempts but the right side of the expression comes up null every time. Has anyone tried this and had success?
ownerid
is the lookup field on the entity I am doing list rows on, and the lookup entity is type Account
I have a Dataverse step in my Power Automate flow where I am getting all Accounts owned by the current user. However, I am struggling to write the expression in the filter rows section to accomplish that. I wrote
_ownerid_value eq triggerOutputs()?['body/_ownerid_value']
as one of my attempts but the right side of the expression comes up null every time. Has anyone tried this and had success?
ownerid
is the lookup field on the entity I am doing list rows on, and the lookup entity is type Account
1 Answer
Reset to default 0Did you try putting the expression after eq in upper brackets ''? Should look something like :
_ownerid_value eq 'triggerOutputs()?['body/_ownerid_value']'