Hi Folks,
@v-siky-msft ; @PowerAddict ; @Pstork1 ; @timl ; @yashag2255
I am making an application for Taxi request for the company I work for, today all very archaic, even though they are paying the Office360 system.
In Sharepoint I have the following lists for this:
List: Coloborador
Fields: Number-Employee; Name; Address; telephone
List: RequestTaxi
Fields: ID (Sharepoint); Reason; Date; Excerpt; Approver
LIsta: PassengersTaxi
Fields: RequestID; PassengerName; Ida time; Return Time
The PassengerName field of the PassengerTaxi list is a query performed on the Coloborador list where the query returns a concatenation of the fields (Number-Employee - Name).
Initially explained this, I made in powerapps a screen applaud with a form and a gallery. Connected the RequestTaxi (Form) and PassengersTaxi lists, and creates a collection called TaxiPassageiro.

Formulas>>
OnStart: Clear(TaxiPassageiro);; Collect(TaxiPassageiro;{NomePassagiero: "";HrIDA: "";HrVOLTA: ""});
OnSelect: (In the red bar with +)
Patch(TaxiPassageiro; Last(TaxiPassageiro); {NomePassagiero: ComboBox1.Selected.Value; HrIDA: TextInput8.Text; HrVOLTA: TextInput9.Text} );; Collect(TaxiPassageiro; {NomePassagiero: ""; HrIDA: ""; HrVOLTA: "" } )
My problem: I choose a combobox item that is the passenger, but starting a collection he only

Image above Before adding new passenger

Clicking on new passenger, ie after PATCH and COLLECT, the combobox is in arm for all that were inserted, but the name is recorded in the collection.
Following combobox configuration

Can someone help me please??