Assuming the two labels (
Label68_143, Label68_144) are in the gallery and not sure if the date picker (
DatePicker1_3) is in the gallery but will say yes for now, you simply need to prefix those controls in your patch with DATA, so something like this:
ForAll(
Filter(
glyupload_3.AllItems,
Checkbox3_1.Value
) As DATA,
With(
{
L143: Trim(DATA.Label68_143.Text),
L144: Trim(DATA.Label68_144.Text)
},
Concurrent(
Patch(
'Requisition Main',
LookUp(
'Requisition Main',
'Order Number' = L143
),
{'Uploaded Date': DATA.DatePicker1_3.SelectedDate}
),
Patch(
'Requisition Line Item',
LookUp(
'Requisition Line Item',
'Item Number' = L144
),
{'Uploaded Date': DATA.DatePicker1_3.SelectedDate}
)
)
)
)
Or, if the date picker is not in the gallery:
ForAll(
Filter(
glyupload_3.AllItems,
Checkbox3_1.Value
) As DATA,
With(
{
L143: Trim(DATA.Label68_143.Text),
L144: Trim(DATA.Label68_144.Text)
},
Concurrent(
Patch(
'Requisition Main',
LookUp(
'Requisition Main',
'Order Number' = L143
),
{'Uploaded Date': DatePicker1_3.SelectedDate}
),
Patch(
'Requisition Line Item',
LookUp(
'Requisition Line Item',
'Item Number' = L144
),
{'Uploaded Date': DatePicker1_3.SelectedDate}
)
)
)
)