I have two collections in Power Apps: ValoresDropDown
and ValoresGalleryText
.
I need to compare ValoresGalleryText
with ValoresDropDown
, where ValoresDropDown
is the base and ValoresGalleryText
is the current one. I need it to perform this comparison and return the values that are missing in relation to the base collection (ValoresDropDown
).
ClearCollect(
col_MissingValue;
ShowColumns(
Filter(
AddColumns(
ValoresDropDown ;
MatchFound;
!IsBlank(
LookUp(
ValoresGalleryText;
Value = ValoresDropDown[@Value]
)
)
);
MatchFound = false
);
Value
)
);;
Clear(MissingItems);
ForAll(ValoresDropDown as VD,
If(IsBlank(Lookup(ValoresGalleryText,Value = VD.Value)),Collect(MissingItems,VD.Value))
);
WarrenBelz
146,537
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,908
Most Valuable Professional