Hey All,
I am having trouble getting this to work.
I have a SharePoint list that i am updating/adding contents to depending of whether or not the content is already present.
However I keep getting an error on the second lookup Function
ForAll(colApr,If(IsBlankOrError(Filter(LAST_ORDER_PO,ITEM_SKU).ITEM_SKU),
Patch(LAST_ORDER_PO, Defaults(LAST_ORDER_PO), {
Title:ITEM_SKU,
ITEM_SKU:ITEM_SKU,
QTY:Value(TextInput2.Text),
DATE: Now()
}),
Patch(LAST_ORDER_PO, LookUp(LAST_ORDER_PO,ITEM_SKU = ThisRecord.ITEM_SKU), {
QTY:Value(TextInput2.Text),
DATE: Now()
})
));