@Danny_Dicaprio -
1. Is there a reason you're using a Custom DataCard as opposed to the DataCard for the "Step 1_ID Stage _Additional Edit Access" field?
2. What is the reason for using Patch rather than the SubmitForm function?
I would have expected the following set up:
1. Add the "Step 1_ID Stage _Additional Edit Access" (Single Line Text) field into your EditForm as a DataCard
2. Unlock the DataCard
3. Insert a ComboBox control into that DataCard
4. Set the Items property of the CombBox control to:
Users
5. Delete the Text Input control inside the DataCard
6. Address the Y error by instead referencing the ComboBox control instead
7. Set the Update property of the DataCard to:
'Your ComboBox Name'.Selected.'Primary Email'
8. Set the DefaultSelectedItems property of the ComboBox control to:
LookUp(
Users,
'Primary Email' = Parent.Default
)