Hi @Veronica,
Do you want to save three field values from your Support Table into your Main Table?
Which type columns do you use to store the Judge name, judgeId, JudgeDescr value?
Based on the needs that you mentioned, I agree with @Drrickryp's thought almost, I think the Patch function could achieve your needs.
I assume that you created three separated Single line of text type columns to store the Judge name, judgeId, JudgeDescr value from the Support table in your Main Table.
I have made a test on my side, please take a try with the following formula:
Set the Items property of the JudgeDropdown control within your app to following:
'YourSupportTable'
Within the right Advanced tab panel, set the Value property to Judge Name column which you want to display within the JudgeDropdown control.
Set the OnSelect property of the "Submit" button to following:
Patch(
'YourMainTable',
Defaults('YourMainTable'),
{
JudgeName: JudgeDropdown.Selected.Judgename,
JudgeId: JudgeDropdown.Selected.judgeId,
JudgeDescr: JudgeDropdown.Selected.JudgeDescr
}
)
Note: The JudgeName, JudgeId and JudgeDescr are all columns in your Main Table. The Judgename, judgeId and JudgeDescr are all columns in your Support table.
More details about Patch function in PowerApps, please check the following article:
Patch function
Best regards,
Kris