Edit (Deep Link Formula): -
I've got the following flow 'static' formula working to get me to the desired screen and the specific record. It's Working great.
<a href='https://...2&EmpID=32381"'</a>
How do I make the 'Employee ID' in the link dynamic?
I was able to make it dynamic in the same Power App using a link with the following in a button deep link email using a variable and the SP list column -
...'https://...2&EmpID=" & varDetailRecord.EE_List_Emp_ID...
The SP List column name for Employee ID is 'EE_List_Empl_ID'
***********************************************************************************************************************
I am trying to fine-tune a deep linking formula in flow.
In Power Apps the deep linking is working fine using the following formula in a button. The formula opens the specific content/record required, and ends with -
<a href='https://...2&EmpID=" & varDetailRecord.EE_List_Emp_ID & "'</a>
Using the following in Power Automate opens the Power App to the Main Screen.
<a href='https://...2"'</a>
When I use the following the app opens to the deep link screen, but no data appears. How do I account for the varDetailRecord component, if this is even the problem?
<a href='https://...2&EmpID=EE_List_Emp_ID & "'</a>