Forum Discussion
setis
6 years agoPost Partisan
Matching records
Dear all, I have a telephone book that looks like this: I am trying to calculate the not answered calls. This is, calls that have been placed in queue but do not have a "descript" = ...
- 6 years ago
Something like this
sumx(filter(summarize(table, table[Call id], "_q",calculate(count(table[Call id]),Table[descript] = "placed in queue") , "_c",calculate(count(table[Call id]),Table[descript] = "conversation")), [_q]>0 && ([_c] =0 || isblank([_c]))),[_q])
amitchandak
6 years agoSuper User
Something like this
sumx(filter(summarize(table, table[Call id], "_q",calculate(count(table[Call id]),Table[descript] = "placed in queue")
, "_c",calculate(count(table[Call id]),Table[descript] = "conversation")), [_q]>0 && ([_c] =0 || isblank([_c]))),[_q])