Hi @Woody2312 ,
Patch(_99aa,
Defaults(_99aa),
{Testing: Combobox.Selected.Value}))
In the above code, remove the last ")" parenthesis as it is not required. Please check for the Open and closed parenthesis.
Patch(_99aa,
Defaults(_99aa),
{
Testing: Combobox.Selected.Value
}
)
In the above code, Testing is the column name in Excel, and if you want to add the two text input box values to the Excel you can try the below formula,
Patch(_99aa,
Defaults(_99aa),
{
ColumnName1: Combobox.Selected.Value,
ColumnName2: TextInput1.Text,
ColumnName3: TextInput2.Text
}
)
Check this out and see if it works.
Thanks!!!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.