I need to do a countif (to return an integer) if the SharePoint list record matches the Last AND First Names from a different data source being brought in. I have this, but there is a delegation warning:
CountIf('Consumer List',ThisItem.LastName = LastName && ThisItem.FirstName = ThisItem.FirstName)
I want to use this in the text of a label in a datacard of a gallery.
The gallery Items is this:
Sort(GroupBy(ShowColumns('Consumer Orders',"FullName","Street","Apt","DOB","LastName","FirstName","ZIP","City"),"FullName","Street","Apt","DOB","LastName","FirstName","ZIP","City","FullNames"),FullName,Ascending)
If I do just a CountIf and use 'Consumer List'.FirstName, I get a non-delegated value. Or is there a better way to do this? I ultimately want to get a 'weighted' value based on matches between the two datasets.