I am trying to build abut that takes the contents of a collection, checks to see if the record already lives in a sharepoint list and if not create a record for it.
Here's what I've got so far but im honestly lost for making it work:
ForAll(If(ShowColumns(CombinedRecords,"field_3" )=Filter(Live_User_Record, "PZINSKEY"),
"Do nothing",
Patch(Live_User_Record,Defaults(Live_User_Record),
{Title:User_idVar},
{LastChange:Now()},
{Changeby:User_idVar},
{PZINSKEY:ForAll(ShowColumns(CombinedRecords,"field_3" ))}
)
))
I would really appreciate any help anyone could give, I may be out of my depth here.
Thanks