Hi,
Context:
Data1 based on Excel table (Excel connector),
Data2 based on Sharepoint List (SP connector).
They contain similar elements:
- Data1.ID = Data2.ArchiID
- Data1.Name should be the same as Data2.Title
- Data1.Documentation should be the same as Data2.Description
MyGallery will be based on a subset of Data1 (see 'Goal' below)
Goal:
In order to sync Data1 and Data2, MyGallery will first display Data1 items which differ in Data2, that is:
Data1.ArchiID = Data2.ID (same item)
- Data1.Name <> Data2.Title
- OR
- Data1.Documentation <> Data2.Description
Attempt:
Filter(
Data1,
With(
{D: LookUp(Data2, ArchiID = ThisRecord.ID)},
Name <> D.Title Or Documentation <> D.Description
)
)
Please note; the delegation warnings can be ignored. There won't be more than 500 records in the tables.
Result:
All items get displayed, not only the ones where either Name/Title or Documentation/Description differ.
Any hints?
Thank you.