Hello everyone,
I got really strange behavior here, maybe someone can explain what is happening?
Basically following formula works only if there is "Lower" but it does not matter in which part? If I remove "Lower" from both emails, formula stop working. I'm using similar formula in other places and it works fine without "Lower", this happens only when used with "AddColumns".
WORKS:
AddColumns(
SPlist1,
"SortField1",
CountRows(Filter(Sort(SPlist2,ID,Descending),
Lower(List1Person.Email) = List2person.Email))
WORKS:
AddColumns(
SPlist1,
"SortField1",
CountRows(Filter(Sort(SPlist2,ID,Descending),
List1Person.Email = Lower(List2person.Email) ))
DOES NOT WORK:
AddColumns(
SPlist1,
"SortField1",
CountRows(Filter(Sort(SPlist2,ID,Descending),
List1Person.Email = List2person.Email))