web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Power Automate Fundamentals # 42: Get Lookup Field Text in Power Automate

venkatsr Profile Picture venkatsr User Group Leader

Introduction:

In Power Automate one of the common scenarios was to extract Look up Field Text which will be a nightmare for the people who are new to Power Automate about how to extract details of lookup field. As an example on update of Contact Table, Account Details will be extracted .

Step 1:

Login to the required Power Apps environment using URL make.powerapps.com by providing username and password and click on Flows on the left-hand side as shown in the below figure.

Step 2:

After Step 1, Click on New Flow and select automated cloud flow and choose the trigger as when a row is added.modified or deleted under Dataverse Connector and click on Create as shown in the below figure.

Step 3:

After Step 2, name the flow as Get Lookup Field Text and step as When a row is added, modified or deleted [ Contact Table Updates] with the following values as inputs

Change type : Modified

Table name : Contacts

Scope : Organization

as shown in the below figure.

Step 4:

After Step 3, take new step and select Dataverse Connector and under Dataverse select action Get a row by ID and name the step as Get a row by ID [ Get Account details based on Account Lookup] and select Company Name Value under step When a row is added, modified or deleted [ Contact Table Updates] with the following values as inputs

Table name : Accounts

Row ID : Company Name (value) {triggerOutputs()?[‘body/_parentcustomerid_value’]}

as shown in the below figure

Step 5:

After Step 4, take compose action and name it as Extract Account Name and under Inputs select Account name from Get a row by ID [ Get Account details based on Account Lookup] step

Inputs : Account Name {outputs(‘Get_a_row_by_ID_[_Get_Account_details_based_on_Account_Lookup]’)?[‘body/name’]}

Step 6:

After Step 5, save the flow and now open contact record and update as shown in the below figure

Step 7:

After Step 6, now go to the flow run and observe Account name was extracted in the compose action as shown in the below figure

Note:

  1. Make sure to save and run the flow whenever you try expressions.

Conclusion: In this way we can extract lookup value name during update of a table using Power Automate Flow easily.


This was originally posted here.

Comments

*This post is locked for comments