I am learning Power Apps. Many years ago I programmed in VB 6. A lot has changed since then.
I am building a expense report that requires the user to select all the individuals in the carpool. Carpool is a multi select drop down box. I know that .SelectedItems gives me a table of the carpool members the user selected. I don't know how to access the individual members of the table.
The database table that contains the carpool members has a row for each member of the carpool and the reimbursement number.
This is the code I have:
ForAll(
Carpool.SelectedItems
Patch(
Carpools,
{
'Reimb Numb':First(colStageMinReimb).ReimbNumber,
'Sem Name': This is where I need help. As the function iterates through the selected items, what parameter do I pass?
}
)
)