Hello everyone,
I have an issue that wasn't there before. I'm filtering my gallery with the "in" operator, it's connected to a sharepoint list and I can't see entries that were made from yesterday until now. This issue started yesterday and up until then it had been working perfectly.
//This is the code that's no longer working
Filter(colVoucherReportTable, SearchUnit in varManyUnits && FirstApprover.Email = User().Email && ApprovalStatus="Pending" && FirstApproval=Blank())
//This works when I change the "in" to "="
Filter(colVoucherReportTable, SearchUnit = varManyUnits && FirstApprover.Email = User().Email && ApprovalStatus="Pending" && FirstApproval=Blank())
//This is the variable i'm trying to check...
Set(varManyUnits, Concat(
gal_UnitControls.AllItems,
Unit,
"; "
));
I feel like I need to use the "in" or a similar operator. "exactin" doesn't work either. What's surprising is that this was working fine and now it's no longer working...It's so annoying...