Hello, I'm developing an application that utilizes Dataverse tables. Within my application, I have two dropdown lists whose data is sourced from another Dataverse table. Each column in these dropdown lists has properties of type Text. My objective is for when the user presses a button, the selections made in each dropdown list are saved in the corresponding columns of my main Dataverse table, which is named 'project.' Currently, I'm working with the following formula:
Project;
Defaults(Project);
{
Store: store_.Selected.Value,
Route: route_.Selected.Value
}