the patch is working but only updates yellow part from table a to the VACANCYID. How can I add the blue part from table b the VACANCYID also, i.e. IT0820230002.
ClearCollect(colTableA, Filter(TableA, Import = "Yes"));
ForAll(colTableA,
Patch(TableB ,LookUp(TableB, Available = "Yes"),
{ Title: colTableA[@PO].Value,
VacancyNumber: Concatenate(colTableA[@POSID], TableB.BillID), // this is not working, reason I don't know how to reference TableB fields
VacancyNumber: Concatenate(colTableA[@POSID], "test"), // works
Available: false
}
)
)