Hi @ColinM ,
According to the needs that you mentioned, I think the ForAll function could achieve your needs. Based on the ForAll formula that you provided, I think there is something wrong with it.
I have made a test on my side, please consider modify your formula as below (set the OnSelect property of a button to following) :
ForAll(
RenameColumns(StartInventoryCollection, "ID", "ID1"),
Patch(
StartInventoryCollection,
LookUp(StartInventoryCollection, ID = ID1),
{
'Preivous Inventory': LookUp(StartInventoryCollection, ID = ID1, 'Current Inventory')
}
)
)
RenameColumns function, Patch function, ForAll function
Please consider take a try with above solution, then check if the issue is solved.
Best regards,