@BrunaVieiraPDT
Do you mean If you select two items, just put two corresponding values to the left boxes?
The most understandable way is to enter values in tabular form. please this workaround.
1. Set OnChange property of Combo box as below:
Clear(MyCol);ForAll(DataCardValue41.SelectedItems,Collect(MyCOl,{Color:Value,NO:Blank()}));
Reset([@TextInput1]);Reset([@TextInput2]);Reset([@TextInput3]);Reset([@TextInput4]);Reset([@TextInput5]);Reset([@TextInput6]);Reset([@TextInput7]);
2. Add a DataTable in the 'valor do reembolso' card, set Items property to MyCol
3. Move the seven text box on the NO column, adjust the alignment
4. Set each Text box visible property
TextInput1: CountRows(MyCol)>=1
TextInput2: CountRows(MyCol)>=2
TextInput3: CountRows(MyCol)>=3
TextInput4: CountRows(MyCol)>=4
TextInput5: CountRows(MyCol)>=5
TextInput6: CountRows(MyCol)>=6
TextInput7: CountRows(MyCol)=7
5. Set the Default of each Text box:
If(CountRows(DataCardValue1.SelectedItems)=0,"")
Note: DataCardValue1 is the combo box display name.

Sik