I’d like to tally up rows that contain a certain text string in my PivotTable of studies.
This is the formula I use in the Insert Calculated Field dialog:
=ISNUMBER(FIND("🇬🇧",internalName))*numberOfBooked
hoping to get a sum of the booked participants in Great Britain.
But it doesn’t seem to work, it always sums it up to 0.
Is it impossible to use the FIND-function in calculated fields? Or is there another mistake I made?
When I use the same formula in a manually created table, it works like a charm.

GBis a different font/unicode (maybe?) than the rest. Are you simply typing "GB" or are you pasting from somewhere?=CALCULATE(SUM(Table1[numberOfBooked]), FILTER(Table1, NOT(ISBLANK(Table1[internalName])) && FIND("GB",Table1[internalName],1,0)>0)). If you just want a count of rows change theSUM(Table1[numberOfBooked])bit toCOUNTROWS(Table1).